Skip to content

Commit

Permalink
add pct to encode
Browse files Browse the repository at this point in the history
  • Loading branch information
zth committed Sep 15, 2022
1 parent c4e8ffb commit ae2c1d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions analysis/src/Hover.ml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ let encodeURIComponent text =
| '=' -> Buffer.add_string buf "%3D"
| '?' -> Buffer.add_string buf "%3F"
| '@' -> Buffer.add_string buf "%40"
| '%' -> Buffer.add_string buf "%25"
| c -> Buffer.add_char buf c);
loop (i + 1))
in
Expand Down

0 comments on commit ae2c1d9

Please sign in to comment.