Skip to content

Commit e39b5a5

Browse files
committed
fix base 85 inconsistencies
1 parent f1424f7 commit e39b5a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/library/base64.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
This module provides functions for encoding binary data to printable
1717
ASCII characters and decoding such encodings back to binary data,
1818
such as :ref:`those specified in RFC 4648 <base_64_rfc_4648>` and
19-
:ref:`Base-85 encodings <base_64_base_85>`.
19+
:ref:`Base85 encodings <base_64_base_85>`.
2020

2121
There are two interfaces provided by this module. The modern interface
2222
supports encoding :term:`bytes-like objects <bytes-like object>` to ASCII
@@ -186,15 +186,15 @@ POST request. The encoding algorithm is not the same as the
186186

187187
.. _base_64_base_85:
188188

189-
Base 85 Encodings
189+
Base85 Encodings
190190
-----------------
191191

192-
Base-85 encoding is not formally specified. Base-85 encoding is a de facto standard,
192+
Base85 encoding is not formally specified. Base85 encoding is a de facto standard,
193193
and different systems perform the encoding differently.
194194

195195
The Ascii85 and Base85 functions in this module are two implementations of
196196
the de facto standard. Which function you should use depends on how the other
197-
software you use implements the Base-85 encoding.
197+
software you use implements the Base85 encoding.
198198

199199
The two functions present in this module differ in how they handle the following:
200200

0 commit comments

Comments
 (0)