@@ -118,8 +118,8 @@ <h1>Digest Encoders</h1>
118118 < td > The libc crypt() "$1$" and Apache "$apr1$" MD5-based hash algorithm.</ td >
119119 </ tr >
120120 < tr >
121- < td > < a href ="org/apache/commons/codec/digest/MurmurHash1 .html "> MurmurHash1 </ a > </ td >
122- < td > Implementation of the MurmurHash1 32-bit and 64-bit hash functions.</ td >
121+ < td > < a href ="org/apache/commons/codec/digest/MurmurHash2 .html "> MurmurHash2 </ a > </ td >
122+ < td > Implementation of the MurmurHash2 32-bit and 64-bit hash functions.</ td >
123123 </ tr >
124124 < tr >
125125 < td > < a href ="org/apache/commons/codec/digest/MurmurHash3.html "> MurmurHash3</ a > </ td >
@@ -153,31 +153,35 @@ <h1>Language Encoders</h1>
153153 < table >
154154 < caption > Language Encoders</ caption >
155155 < tr >
156- < td > < a href ="org/apache/commons/codec/language/Caverphone1.html "> Caverphone 1.0 </ a > </ td >
156+ < td > < a href ="org/apache/commons/codec/language/Caverphone1.html "> Caverphone 1.0</ a > </ td >
157157 < td > Encodes a string into a Caverphone 1.0 value.</ td >
158158 </ tr >
159159 < tr >
160- < td > < a href ="org/apache/commons/codec/language/Caverphone2.html "> Caverphone 2.0 </ a > </ td >
160+ < td > < a href ="org/apache/commons/codec/language/Caverphone2.html "> Caverphone 2.0</ a > </ td >
161161 < td > Encodes a string into a Caverphone 2.0 value.</ td >
162162 </ tr >
163163 < tr >
164- < td > < a href ="org/apache/commons/codec/language/ColognePhonetic.html "> Cologne Phonetic </ a > </ td >
164+ < td > < a href ="org/apache/commons/codec/language/ColognePhonetic.html "> Cologne Phonetic</ a > </ td >
165165 < td > Encodes a string into a Cologne Phonetic value.</ td >
166166 </ tr >
167167 < tr >
168- < td > < a href ="org/apache/commons/codec/language/DoubleMetaphone.html "> Double Metaphone </ a > </ td >
168+ < td > < a href ="org/apache/commons/codec/language/DaitchMokotoffSoundex.html "> Daitch-Mokotoff Soundex</ a > </ td >
169+ < td > Encodes a string into a Daitch-Mokotoff Soundex value.</ td >
170+ </ tr >
171+ < tr >
172+ < td > < a href ="org/apache/commons/codec/language/DoubleMetaphone.html "> Double Metaphone</ a > </ td >
169173 < td > Encodes a string into a double metaphone value.</ td >
170174 </ tr >
171175 < tr >
172- < td > < a href ="org/apache/commons/codec/language/Metaphone.html "> Metaphone </ a > </ td >
176+ < td > < a href ="org/apache/commons/codec/language/Metaphone.html "> Metaphone</ a > </ td >
173177 < td > Encodes a string into a Metaphone value.</ td >
174178 </ tr >
175179 < tr >
176- < td > < a href ="org/apache/commons/codec/language/RefinedSoundex.html "> Refined Soundex </ a > </ td >
180+ < td > < a href ="org/apache/commons/codec/language/RefinedSoundex.html "> Refined Soundex</ a > </ td >
177181 < td > Encodes a string into a Refined Soundex value.</ td >
178182 </ tr >
179183 < tr >
180- < td > < a href ="org/apache/commons/codec/language/Soundex.html "> Soundex </ a > </ td >
184+ < td > < a href ="org/apache/commons/codec/language/Soundex.html "> Soundex</ a > </ td >
181185 < td > Encodes a string into a Soundex value.</ td >
182186 </ tr >
183187 </ table >
@@ -187,28 +191,28 @@ <h1>Network Encoders</h1>
187191 < table >
188192 < caption > Network Encoders</ caption >
189193 < tr >
190- < td > < a href ="org/apache/commons/codec/net/BCodec.html "> BCodec </ a > </ td >
194+ < td > < a href ="org/apache/commons/codec/net/BCodec.html "> BCodec</ a > </ td >
191195 < td > Identical to the Base64 encoding defined by < a href ="https://www.ietf.org/rfc/rfc1521.txt "> RFC 1521</ a > and allows a character set to be
192196 specified.
193197 </ td >
194198 </ tr >
195199 < tr >
196- < td > < a href ="org/apache/commons/codec/net/PercentCodec.html "> PercentCodec </ a > </ td >
200+ < td > < a href ="org/apache/commons/codec/net/PercentCodec.html "> PercentCodec</ a > </ td >
197201 < td > Implements the Percent-Encoding scheme, as described in HTTP 1.1 specification.</ td >
198202 </ tr >
199203 < tr >
200- < td > < a href ="org/apache/commons/codec/net/QCodec.html "> QCodec </ a > </ td >
204+ < td > < a href ="org/apache/commons/codec/net/QCodec.html "> QCodec</ a > </ td >
201205 < td > Similar to the Quoted-Printable content-transfer-encoding defined in < a href ="https://www.ietf.org/rfc/rfc1521.txt "> RFC 1521</ a > and designed
202206 to allow text containing mostly ASCII characters to be decipherable on an ASCII terminal without decoding.
203207 </ td >
204208 </ tr >
205209 < tr >
206- < td > < a href ="org/apache/commons/codec/net/QuotedPrintableCodec.html "> QuotedPrintableCodec </ a > </ td >
210+ < td > < a href ="org/apache/commons/codec/net/QuotedPrintableCodec.html "> QuotedPrintableCodec</ a > </ td >
207211 < td > Codec for the Quoted-Printable section of < a href ="https://www.ietf.org/rfc/rfc1521.txt "> RFC 1521</ a > .
208212 </ td >
209213 </ tr >
210214 < tr >
211- < td > < a href ="org/apache/commons/codec/net/URLCodec.html "> URLCodec </ a > </ td >
215+ < td > < a href ="org/apache/commons/codec/net/URLCodec.html "> URLCodec</ a > </ td >
212216 < td > Implements the < code > www-form-urlencoded</ code > encoding scheme, also misleadingly known as URL encoding.
213217 </ td >
214218 </ tr >
0 commit comments