Skip to content

Commit

Permalink
Correct spelling of “hexadecimal”
Browse files Browse the repository at this point in the history
  • Loading branch information
Thom1729 committed Sep 22, 2021
1 parent 23120f8 commit 141afdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/yaml/scanner.py
Expand Up @@ -1211,7 +1211,7 @@ def scan_flow_scalar_non_spaces(self, double, start_mark):
for k in range(length):
if self.peek(k) not in '0123456789ABCDEFabcdef':
raise ScannerError("while scanning a double-quoted scalar", start_mark,
"expected escape sequence of %d hexdecimal numbers, but found %r" %
"expected escape sequence of %d hexadecimal numbers, but found %r" %
(length, self.peek(k)), self.get_mark())
code = int(self.prefix(length), 16)
chunks.append(chr(code))
Expand Down Expand Up @@ -1403,7 +1403,7 @@ def scan_uri_escapes(self, name, start_mark):
for k in range(2):
if self.peek(k) not in '0123456789ABCDEFabcdef':
raise ScannerError("while scanning a %s" % name, start_mark,
"expected URI escape sequence of 2 hexdecimal numbers, but found %r"
"expected URI escape sequence of 2 hexadecimal numbers, but found %r"
% self.peek(k), self.get_mark())
codes.append(int(self.prefix(2), 16))
self.forward(2)
Expand Down

0 comments on commit 141afdd

Please sign in to comment.