diff options
author | Björn Gustavsson <[email protected]> | 2016-05-25 12:06:19 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-05-25 12:06:19 +0200 |
commit | 42a0229c44875f927bc1fda138d24131874a1c3c (patch) | |
tree | 5bcf5bf2f5ca016ebb68144df50895086ede3692 /lib | |
parent | 3f67cd5eddf3391cdb4754f953089f5bd76f7b5c (diff) | |
parent | b053b349a09296237bfc05ea5d009ad18dbd9349 (diff) | |
download | otp-42a0229c44875f927bc1fda138d24131874a1c3c.tar.gz otp-42a0229c44875f927bc1fda138d24131874a1c3c.tar.bz2 otp-42a0229c44875f927bc1fda138d24131874a1c3c.zip |
Merge branch 'kostis/compiler/v3_kernel/eta-conversion'
* kostis/compiler/v3_kernel/eta-conversion:
v3_kernel: Fix typo in comment
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compiler/src/v3_kernel.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/v3_kernel.erl b/lib/compiler/src/v3_kernel.erl index 402e3c4912..b4bbc5e739 100644 --- a/lib/compiler/src/v3_kernel.erl +++ b/lib/compiler/src/v3_kernel.erl @@ -242,7 +242,7 @@ gexpr_test_add(Ke, St0) -> expr(#c_var{anno=A,name={_Name,Arity}}=Fname, Sub, St) -> %% A local in an expression. %% For now, these are wrapped into a fun by reverse - %% etha-conversion, but really, there should be exactly one + %% eta-conversion, but really, there should be exactly one %% such "lambda function" for each escaping local name, %% instead of one for each occurrence as done now. Vs = [#c_var{name=list_to_atom("V" ++ integer_to_list(V))} || |