Skip to content

Commit

Permalink
Correct Include Brackets in Example Snippet
Browse files Browse the repository at this point in the history
- Update snippets in the README to use `""` for includes instead of `<>`.
  • Loading branch information
RaphiaRa committed Sep 26, 2024
1 parent 722cc18 commit 30ec006
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 @@ -80,7 +80,7 @@ $ make

Example - Path capturing:
```c
#include <th.h>
#include "th.h"

static th_err
handler(void* userp, const th_request* req, th_response* res)
Expand All @@ -106,7 +106,7 @@ It's possible to specify a capture type by adding a colon before the parameter n
Example - File serving:
```c
#include <th.h>
#include "th.h"
static th_err
handle_path(void* userp, const th_request* req, th_response* res)
Expand Down

0 comments on commit 30ec006

Please sign in to comment.