Skip to content

Commit c529b5d

Browse files
committed
Javadoc
1 parent 71fee59 commit c529b5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/codec/digest/UnixCrypt.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.util.regex.Pattern;
2323

2424
/**
25-
* Unix crypt(3) algorithm implementation.
25+
* Unix <a href="https://man7.org/linux/man-pages/man3/crypt.3.html">crypt(3)</a> algorithm implementation.
2626
* <p>
2727
* This class only implements the traditional 56 bit DES based algorithm. Please use Crypt.crypt() for a method
2828
* that distinguishes between all the algorithms supported in the current glibc's crypt().
@@ -33,7 +33,7 @@
3333
* </p>
3434
* <p>
3535
* This class is slightly incompatible if the given salt contains characters that are not part of the allowed range
36-
* [a-zA-Z0-9./].
36+
* {@code [a-zA-Z0-9./]}.
3737
* </p>
3838
* <p>
3939
* This class is immutable and thread-safe.

0 commit comments

Comments
 (0)