summaryrefslogtreecommitdiff
path: root/vala/valainterface.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-08-08 09:54:02 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2018-08-08 09:54:02 +0200
commit3499d33bea0cd8dd705895830f7e9234d4b22be4 (patch)
treeaa644ecf6d314d0072a21a4e8c845f80ff117304 /vala/valainterface.vala
parent0161a74b34dd9651b181a327e282a071f1cfc2a8 (diff)
downloadvala-3499d33bea0cd8dd705895830f7e9234d4b22be4.tar.gz
Replace `%s` with `%s' in format strings of output messages
Diffstat (limited to 'vala/valainterface.vala')
-rw-r--r--vala/valainterface.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valainterface.vala b/vala/valainterface.vala
index 39242d358..1fda79512 100644
--- a/vala/valainterface.vala
+++ b/vala/valainterface.vala
@@ -206,7 +206,7 @@ public class Vala.Interface : ObjectTypeSymbol {
// check whether prerequisite is at least as accessible as the interface
if (!context.analyzer.is_type_accessible (this, prerequisite_reference)) {
error = true;
- Report.error (source_reference, "prerequisite `%s` is less accessible than interface `%s`".printf (prerequisite_reference.to_string (), get_full_name ()));
+ Report.error (source_reference, "prerequisite `%s' is less accessible than interface `%s'".printf (prerequisite_reference.to_string (), get_full_name ()));
return false;
}
}
@@ -223,7 +223,7 @@ public class Vala.Interface : ObjectTypeSymbol {
if (!(class_or_interface is ObjectTypeSymbol)) {
error = true;
- Report.error (source_reference, "Prerequisite `%s` of interface `%s` is not a class or interface".printf (get_full_name (), class_or_interface.to_string ()));
+ Report.error (source_reference, "Prerequisite `%s' of interface `%s' is not a class or interface".printf (get_full_name (), class_or_interface.to_string ()));
return false;
}