Skip to content

Commit d5a4491

Browse files
committed
Correct typos
PR change requests PR comment PR comment
1 parent 2c23ea4 commit d5a4491

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

HOWTO/BOOTSTRAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Primary bootstrap
1414

1515
The two types of version controlled code are fundamentally
1616
different. The primary bootstrap is code compiled from source files in
17-
the lib/{kernel,stdlib,compiler} (They are checked in in the version control system
17+
the lib/{kernel,stdlib,compiler} (They are checked in the version control system
1818
to make it possible to build directly from the code base tree without
1919
the need for an earlier version of the compiler. When a new version of
2020
OTP is released, these files are updated manually (or rather, by using

erts/emulator/beam/erl_db_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3980,7 +3980,7 @@ static void vadd_dmc_err(DMCErrInfo *err_info,
39803980
va_start(args, str);
39813981

39823982

3983-
/* Linked in in reverse order, to ease the formatting */
3983+
/* Linked in reverse order, to ease the formatting */
39843984
e = erts_alloc(ERTS_ALC_T_DB_DMC_ERROR, sizeof(DMCError));
39853985
erts_vsnprintf(e->error_string, DMC_ERR_STR_LEN, str, args);
39863986
e->variable = variable;

lib/compiler/test/guard_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2775,7 +2775,7 @@ welcome({perfect, Profit}) ->
27752775
maps() ->
27762776
ok = evidence(#{0 => 42}).
27772777

2778-
%% Cover handling of put_map in in split_block_label_used/2.
2778+
%% Cover handling of put_map in split_block_label_used/2.
27792779
evidence(#{0 := Charge}) when 0; #{[] => Charge} == #{[] => 42} ->
27802780
ok.
27812781

lib/erl_interface/src/README.internal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ located in the file "ei_x_encode.c". So if any "long long" ei_x
242242
function is used we have an unessesary dependency on
243243
"ei_encode_longlong.o" and then need to link with GNU ld on with the
244244
user code or explicitly link with "libgcc.a". The situation can be
245-
visible in in plain R9C using
245+
visible in plain R9C using
246246

247247
% nm -A erl_interface-3.4/lib/libei.a | \
248248
grep 'longlong' | fgrep -v 'longlong.o'

lib/reltool/src/reltool.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ Create the actual target system from a specification generated by
488488

489489
The creation of the specification for a target system is performed in two steps.
490490
In the first step a complete specification will be generated. It will likely contain
491-
much more files than you are interested in in your target system. In the second
491+
much more files than you are interested in your target system. In the second
492492
step the specification will be filtered according to your filters. There you have the
493493
ability to specify filters per application as well as system wide filters. You can
494494
also select a `profile` for your system. Depending on the `profile`, different

lib/ssh/src/ssh_transport.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ do_verify(PlainText, HashAlg, Sig, {#'ECPoint'{},_} = Key, _) when HashAlg =/= u
15871587
do_verify(PlainText, HashAlg, Sig, #'RSAPublicKey'{}=Key, #ssh{role = server,
15881588
c_version = "SSH-2.0-OpenSSH_7."++_})
15891589
when HashAlg == sha256; HashAlg == sha512 ->
1590-
%% Public key signing bug in in OpenSSH >= 7.2
1590+
%% Public key signing bug in OpenSSH >= 7.2
15911591
public_key:verify(PlainText, HashAlg, Sig, Key)
15921592
orelse public_key:verify(PlainText, sha, Sig, Key);
15931593

lib/stdlib/src/gen_event.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ The function is to return the updated internal state.
351351
State :: term(), Extra :: term()) ->
352352
{ok, NewState :: term()}.
353353
-doc """
354-
This function is called by a `gen_event` process in in order to format/limit the
354+
This function is called by a `gen_event` process in order to format/limit the
355355
server state for debugging and logging purposes.
356356

357357
It is called in the following situations:
@@ -419,7 +419,7 @@ New associations may be added into the status map without prior notice.
419419
reason => term(),
420420
log => [sys:system_event()] }.
421421
-doc """
422-
This function is called by a `gen_event` process in in order to format/limit the
422+
This function is called by a `gen_event` process in order to format/limit the
423423
server state for debugging and logging purposes.
424424

425425
It is called in the following situations:

lib/stdlib/src/gen_server.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ back to the old release.
490490
Extra :: term()) ->
491491
{ok, NewState :: term()} | {error, Reason :: term()}.
492492
-doc """
493-
This function is called by a `gen_server` process in in order to format/limit the
493+
This function is called by a `gen_server` process in order to format/limit the
494494
server state for debugging and logging purposes.
495495

496496
It is called in the following situations:
@@ -559,7 +559,7 @@ New associations may be added to the status map without prior notice.
559559
reason => term(),
560560
log => [sys:system_event()] }.
561561
-doc """
562-
This function is called by a `gen_server` process in in order to format/limit the
562+
This function is called by a `gen_server` process in order to format/limit the
563563
server state for debugging and logging purposes.
564564

565565
It is called in the following situations:

lib/stdlib/src/gen_statem.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@ And again; the _current_ callback module will get the
13661366
%%
13671367
%% Deprecated
13681368
-doc """
1369-
This function is called by a `gen_statem` process in in order to format/limit the
1369+
This function is called by a `gen_statem` process in order to format/limit the
13701370
server state for debugging and logging purposes.
13711371

13721372
It is called in the following situations:
@@ -1458,7 +1458,7 @@ New associations may be added to the status map without prior notice.
14581458
%% Format the callback module status in some sensible that is
14591459
%% often condensed way.
14601460
-doc """
1461-
This function is called by a `gen_statem` process in in order to format/limit the
1461+
This function is called by a `gen_statem` process in order to format/limit the
14621462
server state for debugging and logging purposes.
14631463

14641464
It is called in the following situations:

0 commit comments

Comments
 (0)