[gxml: 1/2] StreamReader: fix typo (Instruccion)
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml: 1/2] StreamReader: fix typo (Instruccion)
- Date: Fri, 8 Oct 2021 15:21:36 +0000 (UTC)
commit 394445cf65d954d99bc44f98540167bc8814af1a
Author: Anders Jonsson <anders jonsson norsjovallen se>
Date: Mon Aug 23 22:19:03 2021 +0200
StreamReader: fix typo (Instruccion)
gxml/StreamReader.vala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gxml/StreamReader.vala b/gxml/StreamReader.vala
index 972fc8e..3f74d48 100644
--- a/gxml/StreamReader.vala
+++ b/gxml/StreamReader.vala
@@ -366,7 +366,7 @@ public class GXml.StreamReader : GLib.Object {
GLib.StringBuilder str = new GLib.StringBuilder ("");
while (!is_space (cur_char ())) {
if (cur_char () == '?') {
- throw new StreamReaderError.INVALID_DOCUMENT_ERROR (_("Invalid Processing Instruccion's target
declaration"));
+ throw new StreamReaderError.INVALID_DOCUMENT_ERROR (_("Invalid Processing Instruction's target
declaration"));
}
str.append_c (cur_char ());
try {
@@ -393,7 +393,7 @@ public class GXml.StreamReader : GLib.Object {
return;
}
if (cur_char () != '>') {
- throw new StreamReaderError.INVALID_DOCUMENT_ERROR (_("Invalid Processing Instruccion's close
declaration"));
+ throw new StreamReaderError.INVALID_DOCUMENT_ERROR (_("Invalid Processing Instruction's close
declaration"));
}
}
private void read_text_node () throws GLib.Error {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]