Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored and wwmayer committed Jul 25, 2023
1 parent e5b6690 commit 6c72f80
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/App/DocumentObserver.h
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ class WeakPtrT
};

/**
* The DocumentObserver class simplfies the step to write classes that listen
* The DocumentObserver class simplifies the step to write classes that listen
* to what happens inside a document.
* This is very useful for classes that needs to be notified when an observed
* object has changed.
Expand Down
4 changes: 2 additions & 2 deletions src/App/Metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class AppExport Metadata
//////////////////////////////////////////////////////////////

std::string name() const; //< A short name for this package, often used as a menu entry.
Meta::Version version() const;//< Version string in symantic triplet format, e.g. "1.2.3".
Meta::Version version() const;//< Version string in semantic triplet format, e.g. "1.2.3".
std::string date()
const;//< Date string -- currently arbitrary (when C++20 is well-supported we can revisit)
std::string description() const;//< Text-only description of the package. No markup.
Expand Down Expand Up @@ -342,7 +342,7 @@ class AppExport Metadata

/**
* Determine whether the current metadata specifies support for the currently-running version of FreeCAD.
* Does not interrogate content items, which must be querried individually.
* Does not interrogate content items, which must be queried individually.
*/
bool supportsCurrentFreeCAD() const;

Expand Down
2 changes: 1 addition & 1 deletion src/Gui/ViewProviderPy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ view: View3DInventorPy\n Default to active view. Optional.</UserDocu>
</Attribute>
<Attribute Name="DropPrefix" ReadOnly="true" >
<Documentation>
<UserDocu>Subname referecing the sub-object for holding dropped object.</UserDocu>
<UserDocu>Subname referencing the sub-object for holding dropped object.</UserDocu>
</Documentation>
<Parameter Name="DropPrefix" Type="String" />
</Attribute>
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Arch/ArchStructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ def onChanged(self,obj,prop):

def getNodeEdges(self,obj):

"returns a list of edges from stuctural nodes"
"returns a list of edges from structural nodes"

edges = []
if obj.Nodes:
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/OpenSCAD/InitGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def QT_TRANSLATE_NOOP(scope, text):
import OpenSCADUtils

openscadfilename = OpenSCADUtils.searchforopenscadexe()
if openscadfilename: # automatic search was succsessful
if openscadfilename: # automatic search was successful
FreeCAD.addImportType("OpenSCAD Format (*.scad)", "importCSG")
param.SetString(
"openscadexecutable", openscadfilename
Expand Down

0 comments on commit 6c72f80

Please sign in to comment.