From 8923df26fda1a983b214f0c6a4f510a0ffe0d37f Mon Sep 17 00:00:00 2001 From: 04cb <0x04cb@gmail.com> Date: Sun, 1 Mar 2026 20:06:58 +0800 Subject: [PATCH] Fix Newtons Third Law example in dotnet README --- dotnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/README.md b/dotnet/README.md index b208a8f65335..b39c7c281998 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -53,7 +53,7 @@ string text1 = @" string text2 = @" 1. An object at rest remains at rest, and an object in motion remains in motion at constant speed and in a straight line unless acted on by an unbalanced force. 2. The acceleration of an object depends on the mass of the object and the amount of force applied. -3. Whenever one object exerts a force on another object, the second object exerts an equal and opposite on the first."; +3. Whenever one object exerts a force on another object, the second object exerts an equal and opposite force on the first."; Console.WriteLine(await kernel.InvokeAsync(summarize, new() { ["input"] = text1 }));