summaryrefslogtreecommitdiff
path: root/include/codemaker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-12-19 19:32:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-12-20 09:56:24 +0100
commitdee81fb2e1df5091702b3c8b0e4a3f2b58e89291 (patch)
tree8d8cacd346541b71c8adc95c3f5a6e85d350c2d7 /include/codemaker
parent2a5d4ed38df988077bcec62da331a7958ce0aaf3 (diff)
Make it clear that the comment talks about class data members
...and revert 0fdb73c9e05374ddba50ae6ab823d7a979a40702 "Fix grammar" Change-Id: I212f874f0ae74c97f35f372092b85a9ed5587faa Reviewed-on: https://gerrit.libreoffice.org/85540 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/codemaker')
-rw-r--r--include/codemaker/exceptiontree.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx
index e0e86dd822f1..eec504a396e7 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -70,11 +70,11 @@ private:
subtypes that are hidden by supertypes are pruned from the hierarchy). The
exception com.sun.star.uno.RuntimeException and its subtypes are pruned
completely from the hierarchy. Each node of the hierarchy is represented by
- an instance of ExceptionTreeNode, where name gives the name of the UNO
- exception type, present is true iff the given exception type is a member of
- the set S, and children contains all the relevant direct subtypes of the
+ an instance of ExceptionTreeNode, where `name` gives the name of the UNO
+ exception type, `present` is true iff the given exception type is a member of
+ the set S, and `children` contains all the relevant direct subtypes of the
given exception type, in no particular order (for nodes other than the root
- node it holds that children are non-empty iff present is false).
+ node it holds that `children` is non-empty iff `present` is false).
*/
class ExceptionTree {
public: