Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rawleyfowler authored Nov 2, 2023
1 parent ba156f1 commit 74286ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ my $router = Router.new(root => '/');
$router.middleware(&middleware-logger); # middleware-logger is provided by the Middleware package

$router.get(-> $request, $response { # Register a GET route on the root of the router
$response.html('<h1>Hello World</h1>);
$response.html('<h1>Hello World</h1>');
});

$router.get('/foo', -> $request, $response { # Register a GET route on /foo
Expand Down Expand Up @@ -171,7 +171,7 @@ Please make sure you squash your branch, and name it accordingly before it gets

#### Testing

Install App::prove6
Install App::Prove6

```bash
zef install --force-install App::Prove6
Expand Down

0 comments on commit 74286ea

Please sign in to comment.