]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
fix typo for non-constant field initializers
authorLuca Bruno <lucabru@src.gnome.org>
Sat, 25 Oct 2014 10:57:02 +0000 (12:57 +0200)
committerLuca Bruno <lucabru@src.gnome.org>
Sat, 25 Oct 2014 10:57:02 +0000 (12:57 +0200)
vala/valafield.vala

index 5eb84dedb35706abc898cf9372d29f391adb469a..d447e8026b784ded31015ddaac8302f95579fbfd 100644 (file)
@@ -155,7 +155,7 @@ public class Vala.Field : Variable, Lockable {
 
                        if (parent_symbol is Namespace && !initializer.is_constant ()) {
                                error = true;
-                               Report.error (source_reference, "Non-constant field initializerS not supported in this context");
+                               Report.error (source_reference, "Non-constant field initializers not supported in this context");
                                return false;
                        }