From 5a279e1efdeccaab6b8c261eb8054ec6acd4ebb7 Mon Sep 17 00:00:00 2001
From: Kyle Julian <38759683+kylejuliandev@users.noreply.github.com>
Date: Fri, 10 Jan 2025 23:13:09 +0000
Subject: [PATCH] Fix issue with seeing the hello world message

Signed-off-by: Kyle Julian <38759683+kylejuliandev@users.noreply.github.com>
---
 docs/tutorials/getting-started/dotnet.mdx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/tutorials/getting-started/dotnet.mdx b/docs/tutorials/getting-started/dotnet.mdx
index 6105a09a2..148b365ed 100644
--- a/docs/tutorials/getting-started/dotnet.mdx
+++ b/docs/tutorials/getting-started/dotnet.mdx
@@ -135,7 +135,7 @@ dotnet build
 dotnet run
 ```
 
-In the logs you should see a line with the following `Now listening on: http://localhost:5251`, although the port number may differ. You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should the message "Hello!".
+In the logs you should see a line with the following `Now listening on: http://localhost:5251`, although the port number may differ. You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should see the message "Hello!".
 
 "Why I'm I seeing that value?", you may ask. Well, it's because a provider hasn't been configured yet. Without a provider to actually evaluate flags, OpenFeature will return the default value. In the next step, you'll learn how to add a provider.
 
@@ -207,7 +207,7 @@ dotnet build
 dotnet run
 ```
 
-You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should the message "Hello!".
+You can visit the following URL in your browser http://localhost:5251/hello (adjust port number as necessary) to view the hello world message. You should see the message "Hello!".
 
 <FlagdChangeContent/>