docs: escape angle brackets to fix html build

This commit is contained in:
Ilkka Seppälä
2025-03-24 18:40:36 +02:00
parent 0f19b475b2
commit 3dc27b25bb
+1 -1
View File
@@ -49,7 +49,7 @@ public interface SentimentAnalysisServer {
}
```
The real sentiment analysis class returns a random response for a given input and simulates the runtime by sleeping
the Thread for 5 seconds. The Supplier<Integer> allows injecting controlled sentiment values during testing, ensuring
the Thread for 5 seconds. The Supplier\<Integer\> allows injecting controlled sentiment values during testing, ensuring
deterministic outputs.
```java
public class RealSentimentAnalysisServer implements SentimentAnalysisServer {