Skip to content

Commit

Permalink
No issue: fixing JavaDocs for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrobisp committed Jun 27, 2014
1 parent 3107bbc commit c61c5ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public class TfidfExtractor
* The input directory with the input files.
* @param suffix
* The suffix of the valid input files.
* @throws IOException io exception
* @throws ResourceInitializationException resource initialization exception
*/
public void buildTfidfModel(File inputDir, String suffix)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ else if (mode.equals(RankingMode.NodeDegreeUnweighted)) {

/**
* A convenience factory method that configures a CooccurrenceGraphExtractor to act like
* the TextRank method by (Mihalcea & Tarau, 2004).
* the TextRank method.
*
* @param language The language the extractor should work on.
* @return A CooccurrenceGraphExtractor configured like the original TextRank method.
Expand All @@ -108,10 +108,10 @@ public static CooccurrenceGraphExtractor createTextRankExtractor(String language
}

/**
* A convenience factory method that configures a {@link CooccurrenceGraphExtractor} to act like
* the TextRank method by (Mihalcea & Tarau, 2004) for English text.
* A convenience factory method that configures a CooccurrenceGraphExtractor to act like
* the TextRank method for English text.
*
* @return A {@link CooccurrenceGraphExtractor} for English text configured like the original TextRank method.
* @return A CooccurrenceGraphExtractor for English text configured like the original TextRank method.
*/
public static CooccurrenceGraphExtractor createTextRankExtractor() {
return createTextRankExtractor("en");
Expand Down

0 comments on commit c61c5ff

Please sign in to comment.