summaryrefslogtreecommitdiff
path: root/vala/valaforeachstatement.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/valaforeachstatement.vala
parent6463ee079a9aad4cd548a41c903e8e272a444370 (diff)
downloadvala-6dbb1e8eebffbb6d2b77fdcdc3b1a636a37602ab.tar.gz
Fix parameter names in the documentation for libvala
Fixes bug 755917
Diffstat (limited to 'vala/valaforeachstatement.vala')
-rw-r--r--vala/valaforeachstatement.vala11
1 files changed, 6 insertions, 5 deletions
diff --git a/vala/valaforeachstatement.vala b/vala/valaforeachstatement.vala
index 8c6522229..4de3f52bd 100644
--- a/vala/valaforeachstatement.vala
+++ b/vala/valaforeachstatement.vala
@@ -95,11 +95,12 @@ public class Vala.ForeachStatement : Block {
/**
* Creates a new foreach statement.
*
- * @param type element type
- * @param id element variable name
- * @param col loop body
- * @param source reference to source code
- * @return newly created foreach statement
+ * @param type_reference element type
+ * @param variable_name element variable name
+ * @param collection container
+ * @param body loop body
+ * @param source_reference reference to source code
+ * @return newly created foreach statement
*/
public ForeachStatement (DataType? type_reference, string variable_name, Expression collection, Block body, SourceReference source_reference) {
base (source_reference);