]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
docs: Fix syntax of several documentation blocks
authorRico Tzschichholz <ricotz@ubuntu.com>
Wed, 6 Sep 2017 06:49:53 +0000 (08:49 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 6 Sep 2017 10:20:27 +0000 (12:20 +0200)
codegen/valatyperegisterfunction.vala
gee/timsort.vala
libvaladoc/api/callable.vala
libvaladoc/api/field.vala
libvaladoc/api/formalparameter.vala
libvaladoc/api/property.vala

index 5f8d2be0f6966daf1077933205e8fbd56cd3cc96..72793cd44126ce4d8a53caaa2b110dfdf0a6e49f 100644 (file)
@@ -413,8 +413,6 @@ public abstract class Vala.TypeRegisterFunction {
 
        /**
         * Returns additional C initialization statements to setup interfaces.
-        *
-        * @return C statements
         */
        public virtual void get_type_interface_init_statements (CCodeBlock block, bool plugin) {
        }
index 58c4d08e87f5da1f4ec8113380fb2faa16a89c08..e8efa233018da003e1c6fe71757ffb9ba91f27d8 100644 (file)
  *
  * This implementation was adapted from Tim Peters's list sort for Python,
  * which is described in detail here:
- *   [[http://svn.python.org/projects/python/trunk/Objects/listsort.txt]]
+ * [[http://svn.python.org/projects/python/trunk/Objects/listsort.txt]]
  *
  * Tim's C code may be found here:
- *   [[http://svn.python.org/projects/python/trunk/Objects/listobject.c]]
+ * [[http://svn.python.org/projects/python/trunk/Objects/listobject.c]]
  *
  * The underlying techniques are described in this paper (and may have even
  * earlier origins):
index 29d965dd01a40e19a6a8f6411ab7e3c23ea89d7b..8973ad6a2a470fce043941264aa3a822ed6cd7a8 100644 (file)
@@ -29,8 +29,6 @@ using Valadoc;
 public interface Valadoc.Api.Callable : Symbol {
        /**
         * The return type of this symbol.
-        *
-        * @return The return type of this symbol or null for void
         */
        public abstract TypeReference? return_type {
                set;
index d7a87a24d307e5207e4c0e5a3edc7d6c73e42a4b..2844faa5f5985f85c2f4fe294b8e564c7f9720a6 100644 (file)
@@ -50,8 +50,6 @@ public class Valadoc.Api.Field : Member {
 
        /**
         * The field type.
-        *
-        * @return The field type or null for void
         */
        public TypeReference? field_type {
                set;
index 58c4c42cd831d43d1521a79bb80bd07df25530da..f22b5bc39a5f66c05275b0cc0a66456ee8a4f824 100644 (file)
@@ -95,8 +95,6 @@ public class Valadoc.Api.FormalParameter : Symbol {
 
        /**
         * The parameter type.
-        *
-        * @return The parameter type or null for void
         */
        public TypeReference? parameter_type {
                set;
index 235292f20ae55c2c7f336ab9bb76f0d31179504a..d981c9027b379a7b532a7827062cab348e5036ca 100644 (file)
@@ -60,8 +60,6 @@ public class Valadoc.Api.Property : Member {
 
        /**
         * The property type.
-        *
-        * @return The property type or null for void
         */
        public TypeReference? property_type {
                set;