]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Documentation fixes
authorDidier 'Ptitjes <ptitjes@free.fr>
Sat, 31 Oct 2009 10:03:23 +0000 (11:03 +0100)
committerJürg Billeter <j@bitron.ch>
Sat, 31 Oct 2009 13:31:06 +0000 (14:31 +0100)
12 files changed:
vala/valaaddressofexpression.vala
vala/valaarraycreationexpression.vala
vala/valaconstructor.vala
vala/valadestructor.vala
vala/valalockstatement.vala
vala/valamethod.vala
vala/valanullliteral.vala
vala/valapointerindirection.vala
vala/valaproperty.vala
vala/valareferencetransferexpression.vala
vala/valatypecheck.vala
vala/valatypesymbol.vala

index 2859a2c3941bdf0005e8f43f65bfeb174b7c48ad..ad00968d8a982696c6138633dac992c4a2612d7c 100644 (file)
@@ -23,7 +23,7 @@
 using GLib;
 
 /**
- * Represents an address-of expression in the source code, e.g. `&foo'.
+ * Represents an address-of expression in the source code, e.g. `&foo`.
  */
 public class Vala.AddressofExpression : Expression {
        /**
index a77be1dbba4174fd919477585aef7ba7fb4605ac..34fbd4e7a620cb08c1754ad517b9811d0d4b4b33 100644 (file)
@@ -25,7 +25,7 @@
 using GLib;
 
 /**
- * Represents an array creation expression e.g. "new int[] {1,2,3}".
+ * Represents an array creation expression e.g. {{{ new int[] {1,2,3} }}}.
  */
 public class Vala.ArrayCreationExpression : Expression {
        /**
index f61f3983171d9098f81559040a3172320eb84f91..7f89a8f05eb9b36640350b3f3bc1841b80c04335 100644 (file)
@@ -32,7 +32,7 @@ public class Vala.Constructor : Symbol {
        public Block body { get; set; }
        
        /**
-        * Specifies the generated `this' parameter for instance methods.
+        * Specifies the generated `this` parameter for instance methods.
         */
        public FormalParameter this_parameter { get; set; }
 
index fd4cf4204c526b3faf4e49ea00eaf75648354882..3f0896ccbd803ff517b9012f3db54982e8907b2f 100644 (file)
@@ -32,7 +32,7 @@ public class Vala.Destructor : Symbol {
        public Block body { get; set; }
        
        /**
-        * Specifies the generated `this' parameter for instance methods.
+        * Specifies the generated `this` parameter for instance methods.
         */
        public FormalParameter this_parameter { get; set; }
 
index 8f9b5a592d2c61f89a321c6969de4b5faf01213c..9ad5dfbddb54680b9475d64f179d845eadb21616 100644 (file)
@@ -23,7 +23,7 @@
 using GLib;
 
 /**
- * Represents a lock statement e.g. "lock (a) { f(a) }".
+ * Represents a lock statement e.g. {{{ lock (a) { f(a) } }}}.
  */
 public class Vala.LockStatement : CodeNode, Statement {
        /**
index 731e9d6537415f2e60c2cd8eec5652453ebacee4..7b0bbe5594761a8e8d20e3cbe6f9f6850807c924 100644 (file)
@@ -151,12 +151,12 @@ public class Vala.Method : Member {
        public bool entry_point { get; private set; }
 
        /**
-        * Specifies the generated `this' parameter for instance methods.
+        * Specifies the generated `this` parameter for instance methods.
         */
        public FormalParameter this_parameter { get; set; }
 
        /**
-        * Specifies the generated `result' variable for postconditions.
+        * Specifies the generated `result` variable for postconditions.
         */
        public LocalVariable result_var { get; set; }
 
index daa7145122821dd622a03276dde6f96550a9a6ce..a82217dc5305ef3031ce72aab537d527e6fb7617 100644 (file)
@@ -23,7 +23,7 @@
 using GLib;
 
 /**
- * Represents a literal `null' in the source code.
+ * Represents a literal `null` in the source code.
  */
 public class Vala.NullLiteral : Literal {
        /**
index 42fb54be50f6bd74f9aa78e662b6bca2d4adf6c9..fa5b7596fc64194a1b81d37eb261386bfcbb7211 100644 (file)
@@ -22,7 +22,7 @@
 
 
 /**
- * Represents a pointer indirection in the source code, e.g. `*pointer'.
+ * Represents a pointer indirection in the source code, e.g. `*pointer`.
  */
 public class Vala.PointerIndirection : Expression {
        /**
index 7b7994971cbee9e370bc51b3eca753e10f079c09..e00a21b8c004ecac095f20242013d1a468df15db 100644 (file)
@@ -67,12 +67,12 @@ public class Vala.Property : Member, Lockable {
        }
        
        /**
-        * Represents the generated ´this' parameter in this property.
+        * Represents the generated `this` parameter in this property.
         */
        public FormalParameter this_parameter { get; set; }
 
        /**
-        * Specifies whether a `notify' signal should be emitted on property
+        * Specifies whether a `notify` signal should be emitted on property
         * changes.
         */
        public bool notify { get; set; default = true; }
index cc3edd3f439c3fc9bbb8ebf6080c082c156e2795..e09d06b3884db310bd60b56a0fe1cc9dc656dfa6 100644 (file)
@@ -22,7 +22,7 @@
 
 
 /**
- * Represents a reference transfer expression in the source code, e.g. `#foo'.
+ * Represents a reference transfer expression in the source code, e.g. `#foo`.
  */
 public class Vala.ReferenceTransferExpression : Expression {
        /**
index 232633f68b29fd05fc545fb604dc9477f340d7be..7097ab877b2acc926f3530e8414749ba77af0725 100644 (file)
@@ -23,7 +23,7 @@
 using GLib;
 
 /**
- * Represents a type check (`is') expression in the source code.
+ * Represents a type check (`is`) expression in the source code.
  */
 public class Vala.TypeCheck : Expression {
        /**
index f8bc285a67615359d198ced7e82c0584ddbdac48..b3fd075d942b8545fbaac9c73bc2bb531b93ea50 100644 (file)
@@ -213,7 +213,7 @@ public abstract class Vala.TypeSymbol : Symbol {
         * Returns the default value for the given type. Returning null means
         * there is no default value (i.e. not that the default name is NULL).
         *
-        * @return      the name of the default value
+        * @return the name of the default value
         */
        public virtual string? get_default_value () {
                return null;