Misc. typos

+ some are doxy others are just comment code.  
+ some minor whitespace and grammatical tweaks. 
+ app/SCL/* typos have also been submitted upstream (https://github.com/stepcode/stepcode/pull/366). So it's ok to merge them in to master.
This commit is contained in:
luzpaz
2017-10-03 11:09:41 -04:00
committed by wmayer
parent 732eab609b
commit f3bf8fe919
97 changed files with 125 additions and 125 deletions

View File

@@ -250,7 +250,7 @@
</Methode>
<Methode Name="insertUKnot">
<Documentation>
<UserDocu>insertUKnote(float U, int Index, float Tolerance) - Insert or overide a knot</UserDocu>
<UserDocu>insertUKnote(float U, int Index, float Tolerance) - Insert or override a knot</UserDocu>
</Documentation>
</Methode>
<Methode Name="insertUKnots">
@@ -260,7 +260,7 @@
</Methode>
<Methode Name="insertVKnot">
<Documentation>
<UserDocu>insertUKnote(float V, int Index, float Tolerance) - Insert or overide a knot.</UserDocu>
<UserDocu>insertUKnote(float V, int Index, float Tolerance) - Insert or override a knot.</UserDocu>
</Documentation>
</Methode>
<Methode Name="insertVKnots">

View File

@@ -42,7 +42,7 @@ public:
PropertyGeometryList GeometrySet;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -43,7 +43,7 @@ public:
App::PropertyLink Tool;
PropertyShapeHistory History;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -37,7 +37,7 @@ class Common : public Boolean
public:
Common();
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
protected:

View File

@@ -41,7 +41,7 @@ public:
App::PropertyString FileName;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -38,7 +38,7 @@ class Cut : public Boolean
public:
Cut();
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
protected:

View File

@@ -38,7 +38,7 @@ class Fuse : public Boolean
public:
Fuse();
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
protected:

View File

@@ -41,7 +41,7 @@ public:
App::PropertyString FileName;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -41,7 +41,7 @@ public:
App::PropertyString FileName;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -45,7 +45,7 @@ public:
App::PropertyString FileName;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -42,7 +42,7 @@ public:
App::PropertyVectorList Nodes;
App::PropertyBool Close;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -38,7 +38,7 @@ class Section : public Boolean
public:
Section();
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
protected:

View File

@@ -38,13 +38,13 @@ namespace Part
class Geometry;
/** 2D Shape
* This is a specialiced version of the PartShape for use with
* This is a specialized version of the PartShape for use with
* flat (2D) geometry. The Z direction has always to be 0.
* The position and orientation of the Plane this 2D geometry is
* referenced is defined by the Placement property. It also
* has a link to a supporting Face which defines the position
* in space where it is located. If the support is changed the
* static methode positionBySupport() is used to calculate a
* static method positionBySupport() is used to calculate a
* new position for the Part2DObject.
* This object can be used stand alone or for constraint
* geometry as its descend Sketcher::SketchObject .
@@ -82,7 +82,7 @@ public:
static const int V_Axis;
static const int N_Axis;
/** @name methods overide Feature */
/** @name methods override Feature */
//@{
/// recalculate the Feature
App::DocumentObjectExecReturn *execute(void);

View File

@@ -1194,7 +1194,7 @@ void ViewProviderPartExt::updateVisual(const TopoDS_Shape& inputShape)
}
# ifdef FC_DEBUG
// printing some informations
// printing some information
Base::Console().Log("ViewProvider update time: %f s\n",Base::TimeInfo::diffTimeF(start_time,Base::TimeInfo()));
Base::Console().Log("Shape tria info: Faces:%d Edges:%d Nodes:%d Triangles:%d IdxVec:%d\n",numFaces,numEdges,numNodes,numTriangles,numLines);
# endif