From 844a299375fa1813155f6a76db096e486e397cd9 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Wed, 17 Jul 2019 17:49:45 -0400 Subject: [PATCH] Re-tweak previous Doxygen tweak Follow up to fcdf23d0132f919b9c36 --- src/App/Document.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/App/Document.cpp b/src/App/Document.cpp index 28f7dac679..b72e2bc34c 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -26,9 +26,9 @@ \ingroup APP \brief The Base class of the FreeCAD Document -This is besides the Application class the most important class in FreeCAD -It contains all the data of the opened, saved or newly created FreeCAD Document. -The Document manage the Undo and Redo mechanism and the linking of documents. +This is (besides the App::Application class) the most important class in FreeCAD. +It contains all the data of the opened, saved, or newly created FreeCAD Document. +The App::Document manages the Undo and Redo mechanism and the linking of documents. \namespace App \class App::Document This is besides the Application class the most important class in FreeCAD @@ -40,16 +40,16 @@ App::Application. Only the Application can Open or destroy a document. \section Exception Exception handling As the document is the main data structure of FreeCAD we have to take a close -look on how Exceptions affect the integrity of the App::Document. +look at how Exceptions affect the integrity of the App::Document. \section UndoRedo Undo Redo an Transactions -Undo Redo handling is one of the major mechanism of an document in terms of +Undo Redo handling is one of the major mechanism of a document in terms of user friendliness and speed (no one will wait for Undo too long). \section Dependency Graph and dependency handling The FreeCAD document handles the dependencies of its DocumentObjects with an adjacence list. This gives the opportunity to calculate the shortest -recompute path. Also enables more complicated dependencies beyond trees. +recompute path. Also, it enables more complicated dependencies beyond trees. @see App::Application