Fix typos [skip ci]

Typos ffound via `codespell v2.1.dev0`  
Also includes fixes in deprecated code of `src/Mod/Assembly`
This commit is contained in:
luz paz
2020-12-28 07:50:51 -05:00
committed by abdullahtahiriyo
parent b7128a8f52
commit f497f09238
11 changed files with 15 additions and 15 deletions

View File

@@ -104,7 +104,7 @@ PyMethodDef Application::Methods[] = {
"loadFile(string=filename,[string=module]) -> None\n\n"
"Loads an arbitrary file by delegating to the given Python module:\n"
"* If no module is given it will be determined by the file extension.\n"
"* If more than one module can load a file the first one one will be taken.\n"
"* If more than one module can load a file the first one will be taken.\n"
"* If no module exists to load the file an exception will be raised."},
{"open", reinterpret_cast<PyCFunction>(reinterpret_cast<void (*) (void)>( Application::sOpenDocument )), METH_VARARGS|METH_KEYWORDS,
"See openDocument(string)"},