diff options
author | Fredrik Gustafsson <[email protected]> | 2013-10-14 14:39:19 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-10-14 14:39:19 +0200 |
commit | 77eba492997f8340425d0828835c2a60cf81550e (patch) | |
tree | 14a44f4170f0f99a8d871551b09216aacdb6bc0b /lib/stdlib/src/dict.erl | |
parent | db460f90313bb7adea4ebd4cf0f3cca568ddf118 (diff) | |
parent | 21095e6830f37676dd29c33a590851ba2c76499b (diff) | |
download | otp-77eba492997f8340425d0828835c2a60cf81550e.tar.gz otp-77eba492997f8340425d0828835c2a60cf81550e.tar.bz2 otp-77eba492997f8340425d0828835c2a60cf81550e.zip |
Merge branch 'fenollp/treewide_remove_unexpected_0xff/OTP-11323' into maint
* fenollp/treewide_remove_unexpected_0xff/OTP-11323:
Remove ^L characters hidden randomly in the code. Not those used in text files as delimiters.
Diffstat (limited to 'lib/stdlib/src/dict.erl')
-rw-r--r-- | lib/stdlib/src/dict.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/dict.erl b/lib/stdlib/src/dict.erl index 4f8d45dc8d..4b42f64609 100644 --- a/lib/stdlib/src/dict.erl +++ b/lib/stdlib/src/dict.erl @@ -387,7 +387,7 @@ merge(F, D1, D2) -> update(K, fun (V1) -> F(K, V1, V2) end, V2, D) end, D1, D2). - + %% get_slot(Hashdb, Key) -> Slot. %% Get the slot. First hash on the new range, if we hit a bucket %% which has not been split use the unsplit buddy bucket. |