summaryrefslogtreecommitdiff
path: root/erts/emulator/utils/count
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/utils/count')
-rwxr-xr-xerts/emulator/utils/count6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/utils/count b/erts/emulator/utils/count
index e0a5e8bb9a..859137ed96 100755
--- a/erts/emulator/utils/count
+++ b/erts/emulator/utils/count
@@ -2,7 +2,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1998-2016. All Rights Reserved.
+%% Copyright Ericsson AB 1998-2021. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@
main(_) ->
DisDir = "./dis",
ok = filelib:ensure_dir(filename:join(DisDir, "dummy")),
- io:format("Dissambling to ~s\n", [DisDir]),
+ io:format("Disassembling to ~s\n", [DisDir]),
ok = file:set_cwd(DisDir),
Path = code:get_path() -- ["."],
Beams0 = [filelib:wildcard(filename:join(Dir, "*.beam")) ||
@@ -98,7 +98,7 @@ increment(Key, Inc) ->
end.
%%%
-%%% Counting sempahore to limit the number of processes that
+%%% Counting semaphore to limit the number of processes that
%%% can run concurrently.
%%%