Skip to content

Commit

Permalink
Fixing typo README.md (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitarDTsonev authored Dec 11, 2024
1 parent b301eb4 commit 25f5053
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 09-threads/lab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ Consumer нишките ни ще имат фиксиран брой `N` и за
```java
package bg.sofia.uni.fmi.mjt.sentimentnalyzer;

import bg.sofia.uni.fmi.mjt.sentimentnalyzer.exceptions.SentimentAnalysisException;

import java.io.Reader;
import java.util.Map;

public interface SentimentAnalyzerAPI {
Expand Down Expand Up @@ -159,7 +162,7 @@ public enum SentimentScore {
* @param stopWords set containing stop words
* @param sentimentLexicon map containing the sentiment lexicon, where the key is the word and the value is the sentiment score
*/
public ParallelSentimentAnalyzer(int workersCount, Set<String> stopWords, Map<String,Integer> sentimentLexicon) { }
public ParallelSentimentAnalyzer(int workersCount, Set<String> stopWords, Map<String, Integer> sentimentLexicon) { }
```

⭐ Бележки:
Expand Down

0 comments on commit 25f5053

Please sign in to comment.