Fix typos

This commit is contained in:
luzpaz
2023-08-31 21:18:35 -04:00
committed by Chris Hennes
parent 0e7fc780bf
commit 40d2a90e3a
7 changed files with 8 additions and 8 deletions

View File

@@ -158,7 +158,7 @@ public:
* These all function as per documentation in Enumeration
*/
//@{
/** setting the enumaration string list
/** setting the enumeration string list
* The list is a NULL terminated array of pointers to a const char* string
* \code
* const char enums[] = {"Black","White","Other",NULL}
@@ -166,7 +166,7 @@ public:
*/
void setEnums(const char** plEnums);
/** setting the enumaration string as vector of strings
/** setting the enumeration string as vector of strings
* This makes the enumeration custom.
*/
void setEnums(const std::vector<std::string> &Enums);

View File

@@ -113,7 +113,7 @@ void Persistence::dumpToStream(std::ostream& stream, int compression)
writer.putNextEntry("Persistence.xml");
writer.setMode("BinaryBrep");
//save the content (we need to encapsulte it with xml tags to be able to read single element xmls like happen for properties)
//save the content (we need to encapsulate it with xml tags to be able to read single element xmls like happen for properties)
writer.Stream() << "<Content>" << std::endl;
Save(writer);
writer.Stream() << "</Content>";

View File

@@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string notr="ture">Form</string>
<string notr="true">Form</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>

View File

@@ -1118,7 +1118,7 @@ bool MeshEvalCorruptedFacets::Evaluate()
const MeshFacetArray& rFaces = _rclMesh.GetFacets();
for (const auto & it : rFaces) {
// dupicated point indices
// duplicated point indices
if (it.IsDegenerated())
return false;
}

View File

@@ -1325,7 +1325,7 @@ unsigned int TopoShape::getMemSize () const
if (shape.IsNull())
continue;
// add the size of the underlying geomtric data
// add the size of the underlying geometric data
Handle(TopoDS_TShape) tshape = shape.TShape();
memsize += tshape->DynamicType()->Size();

View File

@@ -1540,7 +1540,7 @@ protected:
}
void makeCts_1MorePoint1Ellipse(bool& selAllowed)
{
//distance between 1 point and elipse/arc of... not supported yet.
//distance between 1 point and ellipse/arc of... not supported yet.
if (availableConstraint == AvailableConstraint::FIRST) {
//nothing yet
//availableConstraint = AvailableConstraint::RESET;

View File

@@ -390,7 +390,7 @@ def handle():
ALTCSS = f.read()
HTML = HTML.replace("<!--QSS-->","<style type=\"text/css\">"+ALTCSS+"</style>")
# handle file thumbnail icons visiblity and size
# handle file thumbnail icons visibility and size
if not FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Start").GetBool("ShowFileThumbnailIcons",True):
HTML = HTML.replace("display: block; /* thumb icons display */","display: none; /* thumb icons display */")