diff options
author | Björn Gustavsson <[email protected]> | 2011-02-17 13:48:57 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-03-29 07:18:27 +0200 |
commit | b0339050273dfe57b9cbadd9f60b8df766888609 (patch) | |
tree | 4311a49f3d198795dc8df5b164279895652ada93 | |
parent | a76e46c02ae57a39178a5c663e2c0c5c4cbfb30f (diff) | |
download | otp-b0339050273dfe57b9cbadd9f60b8df766888609.tar.gz otp-b0339050273dfe57b9cbadd9f60b8df766888609.tar.bz2 otp-b0339050273dfe57b9cbadd9f60b8df766888609.zip |
beam_dict: Fix typo in comment
-rw-r--r-- | lib/compiler/src/beam_dict.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_dict.erl b/lib/compiler/src/beam_dict.erl index a503fcab38..7f178ba547 100644 --- a/lib/compiler/src/beam_dict.erl +++ b/lib/compiler/src/beam_dict.erl @@ -139,7 +139,7 @@ lambda(Lbl, Index, OldUniq, NumFree, #asm{lambdas=Lambdas0}=Dict) -> Lambdas = [{Lbl,{OldIndex,Lbl,Index,NumFree,OldUniq}}|Lambdas0], {OldIndex,Dict#asm{lambdas=Lambdas}}. -%% Returns the index for a literal (adding it to the atom table if necessary). +%% Returns the index for a literal (adding it to the literal table if necessary). %% literal(Literal, Dict) -> {Index,Dict'} -spec literal(term(), bdict()) -> {non_neg_integer(), bdict()}. |