diff options
author | Siri Hansen <[email protected]> | 2011-03-30 10:03:14 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-03-30 10:03:14 +0200 |
commit | e6a7750c3a922ab1e2d25b98157de56d60a533c9 (patch) | |
tree | 49b53602c803242877bac263e5551d4073124e05 /lib | |
parent | e36547e3a192b40437be01d3323655b9d257cdd6 (diff) | |
download | otp-e6a7750c3a922ab1e2d25b98157de56d60a533c9.tar.gz otp-e6a7750c3a922ab1e2d25b98157de56d60a533c9.tar.bz2 otp-e6a7750c3a922ab1e2d25b98157de56d60a533c9.zip |
rb help error
Start and end date for rb:filter/2 was specified as {{Y-M-D},...} in
the help text instead of {{Y,M,D},...}. This has been corrected.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sasl/src/rb.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sasl/src/rb.erl b/lib/sasl/src/rb.erl index 38e486b7a7..13753565d8 100644 --- a/lib/sasl/src/rb.erl +++ b/lib/sasl/src/rb.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2010. All Rights Reserved. +%% Copyright Ericsson AB 1996-2011. 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 @@ -169,7 +169,7 @@ print_filters() -> print_dates() -> io:format(" - {StartDate, EndDate}~n"), - io:format(" StartDate = EndDate = {{Y-M-D},{H,M,S}} ~n"), + io:format(" StartDate = EndDate = {{Y,M,D},{H,M,S}} ~n"), io:format(" prints the reports with date between StartDate and EndDate~n"), io:format(" - {StartDate, from}~n"), io:format(" prints the reports with date greater than StartDate~n"), |