X-Git-Url: https://mudpy.org/gitweb?a=blobdiff_plain;f=doc%2Fcoder.txt;h=8dd82060c22187d7b2bfc546963b5f619cd92ddb;hb=acce6b025875a86534be441b3996bc8761530fe6;hp=0e999dcdaea6ba7e1ce54a2e4efebac10a11cf5b;hpb=bf3ed2c393a270ca32656f768ada269aa33c478e;p=mudpy.git diff --git a/doc/coder.txt b/doc/coder.txt index 0e999dc..8dd8206 100644 --- a/doc/coder.txt +++ b/doc/coder.txt @@ -138,11 +138,11 @@ encodings --------- * Always use ASCII whenever possible (decimal byte values 32 through 126 - and line termination appropriate to the developer’s platform). + and line termination appropriate to the developer's platform). * UTF-8 can be used, but only when a comment or docstring needs to - mention an author name that requires it; otherwise, using \\x, - \\u or \\U escapes is the preferred way to include non-ASCII + mention an author name that requires it; otherwise, using ``\x``, + ``\u`` or ``\U`` escapes is the preferred way to include non-ASCII data in string literals. * Identifiers must be ASCII-only, and should use English words wherever