Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better descriptions for URL escaping
  • Loading branch information
kraih committed Apr 23, 2012
1 parent 97e7d0b commit 6bf7359
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/Mojo/Util.pm
Expand Up @@ -2925,13 +2925,14 @@ Unquote string.
my $escaped = url_escape $string;
my $escaped = url_escape $string, '^A-Za-z0-9\-\.\_\~';
URL escape string, the pattern used defaults to C<^A-Za-z0-9\-\.\_\~>.
Percent-encode unsafe characters in string, the pattern used defaults to
C<^A-Za-z0-9\-\.\_\~>.
=head2 C<url_unescape>
my $string = url_unescape $escaped;
URL unescape string.
Decode percent-encoded characters in string.
=head2 C<xml_escape>
Expand Down

0 comments on commit 6bf7359

Please sign in to comment.