From 0d79645c2dfe8ebef006e832f3890ddd50f91d83 Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Sun, 29 Mar 2015 13:47:30 -0400 Subject: [PATCH] fix comment typo --- src/rebar_erlc_compiler.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl index 198592d..56f1ebd 100644 --- a/src/rebar_erlc_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -513,7 +513,7 @@ store_erlcinfo(G, Config, _Modified) -> Data = term_to_binary(#erlcinfo{info={Vs, Es}}, [{compressed, 9}]), file:write_file(File, Data). -%% NOTE: If, for example, one of the entries in Files, refers to +%% NOTE: If, for example, one of the entries in Files refers to %% gen_server.erl, that entry will be dropped. It is dropped because %% such an entry usually refers to the beam file, and we don't pass a %% list of OTP src dirs for finding gen_server.erl's full path. Also,