From d779e47000e94783daaefc7cf6c84de28a5b8426 Mon Sep 17 00:00:00 2001 From: Abdullah Khan Date: Wed, 22 Apr 2026 14:30:08 +0530 Subject: [PATCH] Fix the sample code The sample code wont compile with the unneeded ";". Fixed that. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 568a0753..501e6f8e 100644 --- a/README.md +++ b/README.md @@ -347,7 +347,7 @@ client.async().chat().completions().createStreaming(params) .subscribe(chunk -> { System.out.println(chunk); }) - .onCompleteFuture(); + .onCompleteFuture() .whenComplete((unused, error) -> { if (error != null) { System.out.println("Something went wrong!");