Skip to content

Commit

Permalink
Fix typo in Lab 09 assignment and test
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Dec 16, 2024
1 parent a2c79ef commit d5b076f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions 09-threads/lab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ Consumer нишките ни ще имат фиксиран брой `N` и за
### Interface `SentimentAnalyzerAPI`

```java
package bg.sofia.uni.fmi.mjt.sentimentnalyzer;
package bg.sofia.uni.fmi.mjt.sentimentanalyzer;

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

import java.io.Reader;
import java.util.Map;
Expand Down Expand Up @@ -100,7 +100,7 @@ public interface SentimentAnalyzerAPI {
### `AnalyzerInput`

```java
package bg.sofia.uni.fmi.mjt.sentimentnalyzer;
package bg.sofia.uni.fmi.mjt.sentimentanalyzer;

import java.io.Reader;

Expand All @@ -111,7 +111,7 @@ public record AnalyzerInput(String inputID, Reader inputReader) {
#### `SentimentScore`

```java
package bg.sofia.uni.fmi.mjt.sentimentnalyzer;
package bg.sofia.uni.fmi.mjt.sentimentanalyzer;

public enum SentimentScore {
VERY_NEGATIVE(-5, "Very Negative"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package bg.sofia.uni.fmi.mjt.sentimentanalyzer;

import bg.sofia.uni.fmi.mjt.sentimentnalyzer.AnalyzerInput;
import bg.sofia.uni.fmi.mjt.sentimentnalyzer.ParallelSentimentAnalyzer;
import bg.sofia.uni.fmi.mjt.sentimentnalyzer.SentimentScore;
import bg.sofia.uni.fmi.mjt.sentimentanalyzer.AnalyzerInput;
import bg.sofia.uni.fmi.mjt.sentimentanalyzer.ParallelSentimentAnalyzer;
import bg.sofia.uni.fmi.mjt.sentimentanalyzer.SentimentScore;
import org.junit.jupiter.api.Test;

import java.io.StringReader;
Expand Down

0 comments on commit d5b076f

Please sign in to comment.