diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-19 19:32:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-20 09:56:24 +0100 |
commit | dee81fb2e1df5091702b3c8b0e4a3f2b58e89291 (patch) | |
tree | 8d8cacd346541b71c8adc95c3f5a6e85d350c2d7 | |
parent | 2a5d4ed38df988077bcec62da331a7958ce0aaf3 (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>
-rw-r--r-- | include/codemaker/exceptiontree.hxx | 8 |
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: |