Make source code comments use gender neutral pronouns

The changes also include some grammatical fixes as well.
This commit is contained in:
luz paz
2021-12-02 16:18:04 -05:00
parent 501c3dc657
commit 0042f58e4c
59 changed files with 77 additions and 77 deletions

View File

@@ -330,13 +330,13 @@ public:
//@}
/** @name methods for the open handler
* With this facility a Application module can register
* a ending (filetype) which he can handle to open.
* With this facility an Application module can register
* an ending (filetype) which it can handle to open.
* The ending and the module name are stored and if the file
* type is opened the module get loaded and need to register a
* type is opened the module gets loaded and needs to register an
* OpenHandler class in the OpenHandlerFactorySingleton.
* After the module is loaded a OpenHandler of this type is created
* and the file get loaded.
* After the module is loaded, an OpenHandler of this type is created
* and the file gets loaded.
* @see OpenHandler
* @see OpenHandlerFactorySingleton
*/
@@ -446,7 +446,7 @@ protected:
void renameDocument(const char *OldName, const char *NewName);
/** @name I/O of the document
* This slot get connected to all App::Documents created
* This slot gets connected to all App::Documents created
*/
//@{
void slotBeforeChangeDocument(const App::Document&, const App::Property&);

View File

@@ -367,7 +367,7 @@ public:
* When undo, Gui component can query getAvailableUndo(id) to see if it is
* possible to undo with a given ID. If there more than one undo
* transactions, meaning that there are other transactions before the given
* ID. The Gui component shall ask user if he wants to undo multiple steps.
* ID. The Gui component shall ask user if they want to undo multiple steps.
* And if the user agrees, call undo(id) to unroll all transaction before
* and including the the one with the give ID. Same applies for redo.
*