From: Ben Iofel Date: Thu, 28 Jan 2016 00:33:23 +0000 (-0500) Subject: Symbol: fix docs for owner and scope X-Git-Tag: 0.31.1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=999f928cb90022ab9d8cefc22e2d9a2359b601b9;p=thirdparty%2Fvala.git Symbol: fix docs for owner and scope --- 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; } }