diff options
author | Björn Gustavsson <[email protected]> | 2011-08-26 11:02:05 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-10-27 12:26:49 +0200 |
commit | ba794ccff6038903271f5d81c3a0ce1674a430be (patch) | |
tree | 3305a64dc5fa8fa35b3bc72a0a56af6ad496dec5 /system | |
parent | 69542150b2863a2b715e03682539ec68402cb0ff (diff) | |
download | otp-ba794ccff6038903271f5d81c3a0ce1674a430be.tar.gz otp-ba794ccff6038903271f5d81c3a0ce1674a430be.tar.bz2 otp-ba794ccff6038903271f5d81c3a0ce1674a430be.zip |
erl_html_tools: Eliminate mention of deprecated regexp module
Diffstat (limited to 'system')
-rw-r--r-- | system/doc/top/src/erl_html_tools.erl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/system/doc/top/src/erl_html_tools.erl b/system/doc/top/src/erl_html_tools.erl index bb6a9a9f0a..1e2b8c86af 100644 --- a/system/doc/top/src/erl_html_tools.erl +++ b/system/doc/top/src/erl_html_tools.erl @@ -624,17 +624,9 @@ lines_to_key_value([Line | Lines]) -> end. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% Extensions to the 'regexp' module. +% Regular expression helpers. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%% is_match(Ex, Re) -> -%% case regexp:first_match(Ex, Re) of -%% {match, _, _} -> -%% true; -%% nomatch -> -%% false -%% end. - %% -type gsub(String, RegExp, Fun, Acc) -> subres(). %% Substitute every match of the regular expression RegExp with the %% string returned from the function Fun(Match, Acc). Accept pre-parsed |