aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/beam_validator.erl
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2019-05-03 10:06:47 +0200
committerJohn Högberg <[email protected]>2019-05-03 10:39:59 +0200
commit04607bbbcd03806ce49149229267436b00317f52 (patch)
tree162850aeca85627b3bbe9658734c9d76b65491f1 /lib/compiler/src/beam_validator.erl
parent2571cbf025e164989e15502da57de4d5e339f07d (diff)
downloadotp-04607bbbcd03806ce49149229267436b00317f52.tar.gz
otp-04607bbbcd03806ce49149229267436b00317f52.tar.bz2
otp-04607bbbcd03806ce49149229267436b00317f52.zip
beam_validator: Fix bad comment formatting/wording
Diffstat (limited to 'lib/compiler/src/beam_validator.erl')
-rw-r--r--lib/compiler/src/beam_validator.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/src/beam_validator.erl b/lib/compiler/src/beam_validator.erl
index 09a5a6c104..79bd6480a4 100644
--- a/lib/compiler/src/beam_validator.erl
+++ b/lib/compiler/src/beam_validator.erl
@@ -200,7 +200,7 @@ validate_0(Module, [{function,Name,Ar,Entry,Code}|Fs], Ft) ->
numy=none :: none | undecided | index(),
%% Available heap size.
h=0,
- %Available heap size for floats.
+ %%Available heap size for floats.
hf=0,
%% Floating point state.
fls=undefined,
@@ -240,7 +240,7 @@ index_parameter_types([{function,_,_,Entry,Code0}|Fs], Acc0) ->
Acc = index_parameter_types_1(Is, Entry, Acc0),
index_parameter_types(Fs, Acc);
_ ->
- %% Something serious is wrong. Ignore it for now.
+ %% Something is seriously wrong. Ignore it for now.
%% It will be detected and diagnosed later.
index_parameter_types(Fs, Acc0)
end;