diff options
author | Ben Iofel <iofelben@gmail.com> | 2016-01-27 19:33:23 -0500 |
---|---|---|
committer | Ben Iofel <iofelben@gmail.com> | 2016-01-27 19:33:23 -0500 |
commit | 999f928cb90022ab9d8cefc22e2d9a2359b601b9 (patch) | |
tree | 3ffd3e60af7a1a3c15d4751624de6da29d28fdf7 /vala/valasymbol.vala | |
parent | 7687017416a5c0d648a45f2830105ecbbd56c25e (diff) | |
download | vala-999f928cb90022ab9d8cefc22e2d9a2359b601b9.tar.gz |
Symbol: fix docs for owner and scope
Diffstat (limited to 'vala/valasymbol.vala')
-rw-r--r-- | vala/valasymbol.vala | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vala/valasymbol.vala b/vala/valasymbol.vala index cc9211696..18df74ab4 100644 --- a/vala/valasymbol.vala +++ b/vala/valasymbol.vala @@ -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; } } |