From: Luca Bruno Date: Sat, 25 Oct 2014 10:57:02 +0000 (+0200) Subject: fix typo for non-constant field initializers X-Git-Tag: 0.27.1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0b5b2d70b654dba1ee06992c25edd2a2fa174e7;p=thirdparty%2Fvala.git fix typo for non-constant field initializers --- diff --git a/vala/valafield.vala b/vala/valafield.vala index 5eb84dedb..d447e8026 100644 --- a/vala/valafield.vala +++ b/vala/valafield.vala @@ -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; }