From 3dc27b25bb4097eb95b1fe6de7eb2388e85cbd11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Mon, 24 Mar 2025 18:40:36 +0200 Subject: [PATCH] docs: escape angle brackets to fix html build --- service-stub/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service-stub/README.md b/service-stub/README.md index 352f6b321..4058b9625 100644 --- a/service-stub/README.md +++ b/service-stub/README.md @@ -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 allows injecting controlled sentiment values during testing, ensuring +the Thread for 5 seconds. The Supplier\ allows injecting controlled sentiment values during testing, ensuring deterministic outputs. ```java public class RealSentimentAnalysisServer implements SentimentAnalysisServer {