diff --git a/gxml/GomElement.vala b/gxml/GomElement.vala index f01a6d64717fc337d0d095052eec4d46a3875d3f..3fd3f7af27c8309bcb332ed918fca84dd2a41a37 100644 --- a/gxml/GomElement.vala +++ b/gxml/GomElement.vala @@ -444,7 +444,7 @@ public class GXml.GomElement : GomNode, unset (name); long i = index_of (name); if (i < 0) { - warning (_("No index found for ttribute %s").printf (name)); + warning (_("No index found for attribute %s").printf (name)); } else { order.unset (i); } @@ -462,7 +462,7 @@ public class GXml.GomElement : GomNode, unset (k); long i = index_of (k); if (i < 0) { - warning (_("No index found for ttribute %s").printf (k)); + warning (_("No index found for attribute %s").printf (k)); } else { order.unset (i); }