Skip to content

Commit

Permalink
Fix idna_unicode_data:start/0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Fletcher committed Sep 16, 2009
1 parent 47c22b6 commit c27435a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/idna_unicode_data.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lowercase(C) ->
gen_server:call(?SERVER, {lowercase, C}).

start() ->
gen_server:start_link({local, ?SERVER}, ?MODULE, noargs, []).
gen_server:start({local, ?SERVER}, ?MODULE, noargs, []).

start_link() ->
gen_server:start_link({local, ?SERVER}, ?MODULE, noargs, []).
Expand Down

0 comments on commit c27435a

Please sign in to comment.