Packages

Porter Stemming Algorithm Implementation in Erlang

Current section

2 Versions

Jump to

Compare versions

3 files changed
+3 additions
-3 deletions
  @@ -8,4 +8,4 @@
8 8 {<<"links">>,[]}.
9 9 {<<"name">>,<<"porter_stemming">>}.
10 10 {<<"requirements">>,[]}.
11 - {<<"version">>,<<"1.0.0">>}.
11 + {<<"version">>,<<"1.0.1">>}.
  @@ -1,6 +1,6 @@
1 1 {application,porter_stemming,
2 2 [{description,"Porter Stemming Algorithm Implementation in Erlang "},
3 - {vsn,"1.0.0"},
3 + {vsn,"1.0.1"},
4 4 {registered,[]},
5 5 {applications,[kernel,stdlib]},
6 6 {env,[]},
  @@ -47,7 +47,7 @@
47 47 -export([stem/1]).
48 48
49 49 stem(Word) when is_binary(Word) ->
50 - unicode:characters_to_list(stem(unicode:characters_to_list(Word)));
50 + unicode:characters_to_binary(stem(unicode:characters_to_list(Word)));
51 51 stem(Word) when is_list(Word) ->
52 52 stem_word(Word).