]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Symbol: fix docs for owner and scope
authorBen Iofel <iofelben@gmail.com>
Thu, 28 Jan 2016 00:33:23 +0000 (19:33 -0500)
committerBen Iofel <iofelben@gmail.com>
Thu, 28 Jan 2016 00:33:23 +0000 (19:33 -0500)
vala/valasymbol.vala

index cc92116966c768570d5ef173108b2fa77a617c0c..18df74ab4f230184dbee29fdfea7777f6d8f2483 100644 (file)
@@ -40,7 +40,7 @@ public abstract class Vala.Symbol : CodeNode {
        }
 
        /**
-        * The scope this symbol opens.
+        * The scope this symbol is a part of
         */
        public weak Scope owner {
                get {
@@ -180,6 +180,9 @@ public abstract class Vala.Symbol : CodeNode {
                return false;
        }
 
+       /**
+        * The scope this symbol opens.
+        */
        public Scope scope {
                get { return _scope; }
        }