Skip to content

Commit

Permalink
Fix incorrect comment (#9598)
Browse files Browse the repository at this point in the history
Motivation:

The comment is incorrect and so missleading

Modification:

Correct the comment

Result:

Correct comment in code
  • Loading branch information
Liyixin95 authored and normanmaurer committed Sep 24, 2019
1 parent 14a820d commit f81d02b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -221,7 +221,7 @@ private static char forDigit(int digit) {
* unreserved characters do not need to be encoded, and include uppercase and lowercase
* letters, decimal digits, hyphen, period, underscore, and tilde.
* <p>
* unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
* unreserved = ALPHA / DIGIT / "-" / "_" / "." / "*"
*
* @param ch the char to be judged whether it need to be encode
* @return true or false
Expand Down

0 comments on commit f81d02b

Please sign in to comment.