fixed wording
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Tue, 28 Nov 2023 01:50:36 +0000 (19:50 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Tue, 28 Nov 2023 01:50:36 +0000 (19:50 -0600)
www/templates/pages/docs/guide_http_server.html
www/templates/pages/docs/guide_raylib.html

index e5bc6433b131d4d7afe73e8d88ffc1c7f4dc6d48..5b6475df5af3032016426c980f15cc89cdd99db2 100644 (file)
@@ -143,7 +143,7 @@ $ wasmer run --net out.wasm
 
 <div class="container">
     <div class="title">
-        <h2>Rewriting our code</h2>
+        <h2>Rewriting your code</h2>
     </div>
     
     <p>
@@ -188,7 +188,7 @@ index :: (req: &Request, res: &Response) {
     // Collect routes from all packages.
     router->collect_routes();
 
-    // Create a TCP server out of our router.
+    // Create a TCP server out of your router.
     app := http.server.tcp(&router);
 
     // Serve on port 8000.
index c67abb3b68580f62beb592b2280c2084a34083ce..7c2f2c3298785a8cd1f32af1ba4a25c54edce481 100644 (file)
@@ -57,7 +57,7 @@ $ onyx package sync
 
     <p>
         Now that the project is set up and Raylib is installed, you can start writing some code.
-        Lets start by testing our environment by creating a simple window with a gray background.
+        Let's start by testing the environment by creating a simple window with a gray background.
         Write the following code in a file called <code>game.onyx</code>.
     </p>
 
@@ -151,7 +151,7 @@ score: i32;</code></pre>
     // Reset the score.
     score = 0;
 
-    // Put our player in the middle of the screen.
+    // Put the player in the middle of the screen.
     player = .{
         x = 600,
         y = 450,