diff options
author | Andrew Dryga <[email protected]> | 2017-02-12 19:48:38 +0200 |
---|---|---|
committer | Andrew Dryga <[email protected]> | 2017-02-14 11:32:53 +0200 |
commit | fbfb4bb051eb54e43a91042b10250fcca177f521 (patch) | |
tree | 9bc2ee347524957057afec83bb0957478341d5ff | |
parent | 9c95fe5f99678720aad7871e57c3213bab41509b (diff) | |
download | otp-fbfb4bb051eb54e43a91042b10250fcca177f521.tar.gz otp-fbfb4bb051eb54e43a91042b10250fcca177f521.tar.bz2 otp-fbfb4bb051eb54e43a91042b10250fcca177f521.zip |
Fixed typos in lib/mnesia
-rw-r--r-- | lib/mnesia/src/mnesia_monitor.erl | 2 | ||||
-rw-r--r-- | lib/mnesia/src/mnesia_schema.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/mnesia/src/mnesia_monitor.erl b/lib/mnesia/src/mnesia_monitor.erl index ab78c9b13e..ff58974aba 100644 --- a/lib/mnesia/src/mnesia_monitor.erl +++ b/lib/mnesia/src/mnesia_monitor.erl @@ -169,7 +169,7 @@ check_protocol([{Node, {accept, Mon, Version, Protocol}} | Tail], Protocols) -> verbose("Failed to connect with ~p. ~p protocols rejected. " "expected version = ~p, expected protocol = ~p~n", [Node, Protocols, Version, Protocol]), - unlink(Mon), % Get rid of unneccessary link + unlink(Mon), % Get rid of unnecessary link check_protocol(Tail, Protocols) end; check_protocol([{Node, {reject, _Mon, Version, Protocol}} | Tail], Protocols) -> diff --git a/lib/mnesia/src/mnesia_schema.erl b/lib/mnesia/src/mnesia_schema.erl index 0e4017e4c3..b0d7965886 100644 --- a/lib/mnesia/src/mnesia_schema.erl +++ b/lib/mnesia/src/mnesia_schema.erl @@ -1941,7 +1941,7 @@ make_change_table_copy_type(Tab, Node, ToS) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% change index functions .... -%% Pos is allready added by 1 in both of these functions +%% Pos is already added by 1 in both of these functions add_table_index(Tab, Pos) -> schema_transaction(fun() -> do_add_table_index(Tab, Pos) end). |