diff options
author | Hans Bolinder <[email protected]> | 2012-09-27 09:31:06 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-09-27 09:43:11 +0200 |
commit | 6674cff5db0c281d309723f25106dd84c33246b1 (patch) | |
tree | b5bda11f090e7ed5de59a96888fe648c42dbbb69 /lib/stdlib/src/binary.erl | |
parent | 2660d9b52c668e85d987208f8118b415a19c4ea5 (diff) | |
download | otp-6674cff5db0c281d309723f25106dd84c33246b1.tar.gz otp-6674cff5db0c281d309723f25106dd84c33246b1.tar.bz2 otp-6674cff5db0c281d309723f25106dd84c33246b1.zip |
Refine a few opaque types
Diffstat (limited to 'lib/stdlib/src/binary.erl')
-rw-r--r-- | lib/stdlib/src/binary.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/binary.erl b/lib/stdlib/src/binary.erl index 0e95372a76..1ed3422bc5 100644 --- a/lib/stdlib/src/binary.erl +++ b/lib/stdlib/src/binary.erl @@ -21,7 +21,7 @@ %% Implemented in this module: -export([split/2,split/3,replace/3,replace/4]). --opaque cp() :: tuple(). +-opaque cp() :: {'am' | 'bm', binary()}. -type part() :: {Start :: non_neg_integer(), Length :: integer()}. %%% BIFs. |