diff options
author | Björn Gustavsson <[email protected]> | 2018-09-23 13:13:19 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2018-09-26 12:19:56 +0200 |
commit | 8e12d5652d6bb12f18d8a1fe3a1cc0b1ebed4111 (patch) | |
tree | 038e65397cadb104d670f7c5123c8f88a61f669d /lib/compiler | |
parent | 3954ff115258edd18acddd77c526da4f5cb308ec (diff) | |
download | otp-8e12d5652d6bb12f18d8a1fe3a1cc0b1ebed4111.tar.gz otp-8e12d5652d6bb12f18d8a1fe3a1cc0b1ebed4111.tar.bz2 otp-8e12d5652d6bb12f18d8a1fe3a1cc0b1ebed4111.zip |
beam_utils: Fix typo in comment
Diffstat (limited to 'lib/compiler')
-rw-r--r-- | lib/compiler/src/beam_utils.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_utils.erl b/lib/compiler/src/beam_utils.erl index 39916a2af8..65bfb9959a 100644 --- a/lib/compiler/src/beam_utils.erl +++ b/lib/compiler/src/beam_utils.erl @@ -36,7 +36,7 @@ element(1, Val) =:= atom orelse element(1, Val) =:= literal)). -%% instruction() describes all instructions that are used during optimzation +%% instruction() describes all instructions that are used during optimization %% (from beam_a to beam_z). -type instruction() :: atom() | tuple(). |