Skip to content

Commit

Permalink
#include <nanoid.h> -> #include "nanoid.h" in the example
Browse files Browse the repository at this point in the history
Probably more approachable this way.
  • Loading branch information
lukateras committed Jan 3, 2025
1 parent 8cac7c3 commit 14e2af2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A tiny, secure, URL-friendly unique string ID generator for C.
- **Portable.** POSIX-compliant. Available in [29 programming languages][ports].

```c
#include <nanoid.h>
#include "nanoid.h"
#include <stdio.h>
#include <stdlib.h>

Expand Down
2 changes: 1 addition & 1 deletion openbsd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A tiny, secure, URL-friendly unique string ID generator for C.
- **Portable.** POSIX-compliant. Available in [29 programming languages][ports].

```c
#include <nanoid.h>
#include "nanoid.h"
#include <stdio.h>
#include <stdlib.h>

Expand Down

0 comments on commit 14e2af2

Please sign in to comment.