diff options
author | David Haguenauer <[email protected]> | 2014-12-01 14:41:48 -0500 |
---|---|---|
committer | David Haguenauer <[email protected]> | 2014-12-02 09:47:05 -0500 |
commit | b29e4293de1b029c0b5327dc2a42c3414d13d059 (patch) | |
tree | dacdc06c99b0194ee208023d0f6f183b9fbe5927 /lib/stdlib | |
parent | 5a053f10425a6c517c113c375d6306f9716bfe31 (diff) | |
download | otp-b29e4293de1b029c0b5327dc2a42c3414d13d059.tar.gz otp-b29e4293de1b029c0b5327dc2a42c3414d13d059.tar.bz2 otp-b29e4293de1b029c0b5327dc2a42c3414d13d059.zip |
Replaced "Endianess" with "Endianness" everywhere
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/binary.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/stdlib/src/binary.erl b/lib/stdlib/src/binary.erl index 4850a59eb6..8d07a356dd 100644 --- a/lib/stdlib/src/binary.erl +++ b/lib/stdlib/src/binary.erl @@ -89,9 +89,9 @@ copy(_, _) -> decode_unsigned(_) -> erlang:nif_error(undef). --spec decode_unsigned(Subject, Endianess) -> Unsigned when +-spec decode_unsigned(Subject, Endianness) -> Unsigned when Subject :: binary(), - Endianess :: big | little, + Endianness :: big | little, Unsigned :: non_neg_integer(). decode_unsigned(_, _) -> @@ -103,9 +103,9 @@ decode_unsigned(_, _) -> encode_unsigned(_) -> erlang:nif_error(undef). --spec encode_unsigned(Unsigned, Endianess) -> binary() when +-spec encode_unsigned(Unsigned, Endianness) -> binary() when Unsigned :: non_neg_integer(), - Endianess :: big | little. + Endianness :: big | little. encode_unsigned(_, _) -> erlang:nif_error(undef). |