Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit faf71ea

Browse files
committed
Fix spelling of cedillas.
1 parent 07d4fb6 commit faf71ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/lib/libcodecs.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ \subsection{\module{encodings.idna} ---
890890

891891
These RFCs together define a protocol to support non-ASCII characters
892892
in domain names. A domain name containing non-ASCII characters (such
893-
as ``www.Alliancefran\,caise.nu'') is converted into an
893+
as ``www.Alliancefran\c{c}aise.nu'') is converted into an
894894
ASCII-compatible encoding (ACE, such as
895895
``www.xn--alliancefranaise-npb.nu''). The ACE form of the domain name
896896
is then used in all places where arbitrary characters are not allowed

Doc/whatsnew/whatsnew23.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1796,10 +1796,10 @@ \section{New, Improved, and Deprecated Modules}
17961796
to convert between a Unicode domain name and the ASCII-compatible
17971797
encoding (ACE).
17981798

1799-
\begin{verbatim}
1800-
>>> u"www.Alliancefran\,caise.nu".encode("idna")
1799+
\begin{alltt}
1800+
>>> u"www.Alliancefran\c{c}aise.nu".encode("idna")
18011801
'www.xn--alliancefranaise-npb.nu'
1802-
\end{verbatim}
1802+
\end{alltt}
18031803

18041804
In addition, the \module{socket} has been extended to transparently
18051805
convert Unicode hostnames to the ACE before passing them to the C

0 commit comments

Comments
 (0)