summaryrefslogtreecommitdiff
path: root/vala/valalocalvariable.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/valalocalvariable.vala
parent6463ee079a9aad4cd548a41c903e8e272a444370 (diff)
downloadvala-6dbb1e8eebffbb6d2b77fdcdc3b1a636a37602ab.tar.gz
Fix parameter names in the documentation for libvala
Fixes bug 755917
Diffstat (limited to 'vala/valalocalvariable.vala')
-rw-r--r--vala/valalocalvariable.vala8
1 files changed, 4 insertions, 4 deletions
diff --git a/vala/valalocalvariable.vala b/vala/valalocalvariable.vala
index 7c1222421..a7979f747 100644
--- a/vala/valalocalvariable.vala
+++ b/vala/valalocalvariable.vala
@@ -36,10 +36,10 @@ public class Vala.LocalVariable : Variable {
/**
* Creates a new local variable.
*
- * @param name name of the variable
- * @param init optional initializer expression
- * @param source reference to source code
- * @return newly created variable declarator
+ * @param name name of the variable
+ * @param initializer optional initializer expression
+ * @param source_reference reference to source code
+ * @return newly created variable declarator
*/
public LocalVariable (DataType? variable_type, string name, Expression? initializer = null, SourceReference? source_reference = null) {
base (variable_type, name, initializer, source_reference);