Typos
The stepcode typos aren't to be found upstream. Recomend we merge nonetheless.
This commit is contained in:
@@ -101,8 +101,8 @@ class PyObjectBase;
|
||||
/** Python Object handle class
|
||||
* Using pointers on classes derived from PyObjectBase would
|
||||
* be potentionaly dangerous because you would have to take
|
||||
* care of the reference counting of python by your self. There
|
||||
* fore this class was designd. It takes care of references and
|
||||
* care of the reference counting of python by your self. Hence
|
||||
* this class was designed. It takes care of references and
|
||||
* as long as a object of this class exists the handled class get
|
||||
* not destructed. That means a PyObjectBase derived object you can
|
||||
* only destruct by destructing all FCPyHandle and all python
|
||||
|
||||
@@ -94,7 +94,7 @@ class Part21Parser:
|
||||
"""
|
||||
Loads all instances definition of a Part21 file into memory.
|
||||
Two dicts are created:
|
||||
self._instance_definition : stores attibutes, key is the instance integer id
|
||||
self._instance_definition : stores attributes, key is the instance integer id
|
||||
self._number_of_ancestors : stores the number of ancestors of entity id. This enables
|
||||
to define the order of instances creation.
|
||||
"""
|
||||
|
||||
@@ -51,7 +51,7 @@ class SimpleParser:
|
||||
|
||||
Part21.Part21Parser Loads all instances definition of a Part21 file into memory.
|
||||
Two dicts are created:
|
||||
Part21.Part21Parser._instance_definition : stores attibutes, key is the instance integer id
|
||||
Part21.Part21Parser._instance_definition : stores attributes, key is the instance integer id
|
||||
Part21.Part21Parser._number_of_ancestors : stores the number of ancestors of entity id. This enables
|
||||
to define the order of instances creation.
|
||||
"""
|
||||
|
||||
@@ -1224,7 +1224,7 @@ int Area::project(TopoDS_Shape &shape_out,
|
||||
FC_TIME_LOG(t,"project total");
|
||||
|
||||
if(shape.IsNull()) {
|
||||
AREA_ERR("poject failed");
|
||||
AREA_ERR("project failed");
|
||||
return -1;
|
||||
}
|
||||
shape_out = shape;
|
||||
|
||||
@@ -150,7 +150,7 @@ if FreeCAD.GuiUp:
|
||||
# \c findShape() is referenced from Gui/Command.cpp and used by Path.Area commands.
|
||||
# Do not remove!
|
||||
def findShape(shape, subname=None, subtype=None):
|
||||
'''To find a higher oder shape containing the subshape with subname.
|
||||
'''To find a higher order shape containing the subshape with subname.
|
||||
E.g. to find the wire containing 'Edge1' in shape,
|
||||
findShape(shape,'Edge1','Wires')
|
||||
'''
|
||||
|
||||
@@ -131,7 +131,7 @@ void Sheet::clearAll()
|
||||
* Import a file into the spreadsheet object.
|
||||
*
|
||||
* @param filename Name of file to import
|
||||
* @param delimiter The field delimiter charater used.
|
||||
* @param delimiter The field delimiter character used.
|
||||
* @param quoteChar Quote character, if any (set to '\0' to disable).
|
||||
* @param escapeChar The escape character used, if any (set to '0' to disable).
|
||||
*
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
</Methode>
|
||||
<Methode Name="splitCell">
|
||||
<Documentation>
|
||||
<UserDocu>Split a perviously merged cell</UserDocu>
|
||||
<UserDocu>Split a previously merged cell</UserDocu>
|
||||
</Documentation>
|
||||
</Methode>
|
||||
<Methode Name="insertColumns">
|
||||
|
||||
@@ -167,7 +167,7 @@ class exprNode(object):
|
||||
|
||||
|
||||
class FormulaTranslator(object):
|
||||
''' This class tranlates a cell-formula from Excel to FreeCAD.'''
|
||||
''' This class translates a cell-formula from Excel to FreeCAD.'''
|
||||
def __init__(self):
|
||||
self.tokenList = ['=']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user