diff options
author | Hans Bolinder <[email protected]> | 2014-02-13 08:14:27 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-02-13 08:14:27 +0100 |
commit | aa465d4d5b593bef61c20b670536dfe4cb3fa545 (patch) | |
tree | 671e42e9ef3065c9c2dd202d0cf30f2b473a25c9 | |
parent | 152f1a4ba2f4e2f0dfbcde2efe5b5fd5edbdb986 (diff) | |
parent | 1c98f25e9df6b5c2f5195d4c608d880e3d72c453 (diff) | |
download | otp-aa465d4d5b593bef61c20b670536dfe4cb3fa545.tar.gz otp-aa465d4d5b593bef61c20b670536dfe4cb3fa545.tar.bz2 otp-aa465d4d5b593bef61c20b670536dfe4cb3fa545.zip |
Merge branch 'hb/stdlib/re_remove_comment'
* hb/stdlib/re_remove_comment:
[stdlib] Remove a confusing comment in the re module
-rw-r--r-- | lib/stdlib/src/re.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/stdlib/src/re.erl b/lib/stdlib/src/re.erl index afc63496d0..7f3cd8f592 100644 --- a/lib/stdlib/src/re.erl +++ b/lib/stdlib/src/re.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2008-2012. All Rights Reserved. +%% Copyright Ericsson AB 2008-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -19,7 +19,6 @@ -module(re). -export([grun/3,urun/3,ucompile/2,replace/3,replace/4,split/2,split/3]). -%-opaque mp() :: {re_pattern, _, _, _, _}. -type mp() :: {re_pattern, _, _, _, _}. -type nl_spec() :: cr | crlf | lf | anycrlf | any. |