summaryrefslogtreecommitdiff
path: root/vala/valaproperty.vala
diff options
context:
space:
mode:
authorBen Iofel <iofelben@gmail.com>2015-09-30 23:17:56 -0400
committerLuca Bruno <lucabru@src.gnome.org>2015-11-11 10:08:00 +0100
commit6dbb1e8eebffbb6d2b77fdcdc3b1a636a37602ab (patch)
tree9248c281aa39655d146015af89c687986b5c508e /vala/valaproperty.vala
parent6463ee079a9aad4cd548a41c903e8e272a444370 (diff)
downloadvala-6dbb1e8eebffbb6d2b77fdcdc3b1a636a37602ab.tar.gz
Fix parameter names in the documentation for libvala
Fixes bug 755917
Diffstat (limited to 'vala/valaproperty.vala')
-rw-r--r--vala/valaproperty.vala12
1 files changed, 6 insertions, 6 deletions
diff --git a/vala/valaproperty.vala b/vala/valaproperty.vala
index 8a8ced49b..9da3508ea 100644
--- a/vala/valaproperty.vala
+++ b/vala/valaproperty.vala
@@ -157,12 +157,12 @@ public class Vala.Property : Symbol, Lockable {
/**
* Creates a new property.
*
- * @param name property name
- * @param type property type
- * @param get_accessor get accessor
- * @param set_accessor set/construct accessor
- * @param source reference to source code
- * @return newly created property
+ * @param name property name
+ * @param property_type property type
+ * @param get_accessor get accessor
+ * @param set_accessor set/construct accessor
+ * @param source_reference reference to source code
+ * @return newly created property
*/
public Property (string name, DataType? property_type, PropertyAccessor? get_accessor, PropertyAccessor? set_accessor, SourceReference? source_reference = null, Comment? comment = null) {
base (name, source_reference, comment);