[gxml/gxml-0.20] StreamReader: fix typo (Instruccion)
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gxml/gxml-0.20] StreamReader: fix typo (Instruccion)
- Date: Thu, 3 Feb 2022 04:12:18 +0000 (UTC)
commit b45fcd73e734e0142fbf675d96855a005a9a9460
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]