From 6d34ad00e9be1a85c8ee53216ae3b7e345cb15c0 Mon Sep 17 00:00:00 2001 From: Anton Fosselius Date: Tue, 12 Jun 2018 07:02:20 +0200 Subject: [PATCH 1/2] Fixed typo in solver log output - fixed typo in log message --- solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solver.py b/solver.py index 39adc51..45962d5 100644 --- a/solver.py +++ b/solver.py @@ -111,7 +111,7 @@ def __init__(self,assembly,reportFailed,dragPart,recompute,rollback): logger.error(msg) raise RuntimeError('Failed to solve {}: {}'.format( objName(assembly),e.message)) - self.system.log('done sloving') + self.system.log('done solving') touched = False for part,partInfo in self._partMap.items(): From bdaa7c1e23af46f87455346d71b0c4331aed2215 Mon Sep 17 00:00:00 2001 From: Anton Fosselius Date: Tue, 12 Jun 2018 07:58:05 +0200 Subject: [PATCH 2/2] #10 fix typo in readme - Infrustracture -> infrastructure --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 26834f8..bac5d04 100644 --- a/Readme.md +++ b/Readme.md @@ -30,7 +30,7 @@ instruction [here](../../wiki/Build-Instruction). The design of Assembly3 (and the fork of FreeCAD) partially follows the unfinished FreeCAD Assembly [project plan](https://www.freecadweb.org/wiki/Assembly_project), -in particularly, the section [Infrustrcture](https://www.freecadweb.org/wiki/Assembly_project#Infrastructure) +in particularly, the section [Infrastructure](https://www.freecadweb.org/wiki/Assembly_project#Infrastructure) and [Object model](https://www.freecadweb.org/wiki/Assembly_project#Object_model). You can find more details at [here](../../wiki/Design).