summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2017-09-06 08:49:53 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2017-09-06 12:20:27 +0200
commit4c7ab04a8a25e814f9a77553a5f1dc43805aec62 (patch)
tree580a10581a33358261c887648d2f63b446130ed5
parent09bbbfb62654f4c94b587656c3f3bc278effdd42 (diff)
downloadvala-4c7ab04a8a25e814f9a77553a5f1dc43805aec62.tar.gz
docs: Fix syntax of several documentation blocks
-rw-r--r--codegen/valatyperegisterfunction.vala2
-rw-r--r--gee/timsort.vala4
-rw-r--r--libvaladoc/api/callable.vala2
-rw-r--r--libvaladoc/api/field.vala2
-rw-r--r--libvaladoc/api/formalparameter.vala2
-rw-r--r--libvaladoc/api/property.vala2
6 files changed, 2 insertions, 12 deletions
diff --git a/codegen/valatyperegisterfunction.vala b/codegen/valatyperegisterfunction.vala
index 5f8d2be0f..72793cd44 100644
--- a/codegen/valatyperegisterfunction.vala
+++ b/codegen/valatyperegisterfunction.vala
@@ -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) {
}
diff --git a/gee/timsort.vala b/gee/timsort.vala
index 58c4d08e8..e8efa2330 100644
--- a/gee/timsort.vala
+++ b/gee/timsort.vala
@@ -31,10 +31,10 @@
*
* 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):
diff --git a/libvaladoc/api/callable.vala b/libvaladoc/api/callable.vala
index 29d965dd0..8973ad6a2 100644
--- a/libvaladoc/api/callable.vala
+++ b/libvaladoc/api/callable.vala
@@ -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;
diff --git a/libvaladoc/api/field.vala b/libvaladoc/api/field.vala
index d7a87a24d..2844faa5f 100644
--- a/libvaladoc/api/field.vala
+++ b/libvaladoc/api/field.vala
@@ -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;
diff --git a/libvaladoc/api/formalparameter.vala b/libvaladoc/api/formalparameter.vala
index 58c4c42cd..f22b5bc39 100644
--- a/libvaladoc/api/formalparameter.vala
+++ b/libvaladoc/api/formalparameter.vala
@@ -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;
diff --git a/libvaladoc/api/property.vala b/libvaladoc/api/property.vala
index 235292f20..d981c9027 100644
--- a/libvaladoc/api/property.vala
+++ b/libvaladoc/api/property.vala
@@ -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;