aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2018-03-20 23:48:56 -0700
committerkatherine <shmibs@shmibbles.me>2018-03-20 23:48:56 -0700
commit810a5d355c14a2021b3fee539568a0dfef27d766 (patch)
treebc628c7ae25e9bf80f01d0e48c82008ac15dfc37
parentdae878cebd6fddd2fb9b60e3f85862b1b4eb68f2 (diff)
downloadsimple-opt-810a5d355c14a2021b3fee539568a0dfef27d766.tar.gz
update documentation to reflect header location
-rw-r--r--README.md4
-rw-r--r--doc/example.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 71e7fdb..c597fee 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
simple-opt
==========
-[simple-opt.h](src/simple-opt.h) is a single header file which implements a
+[simple-opt.h](simple-opt.h) is a single header file which implements a
simple, flexible, and portable version of command line option parsing for
programs written in C. it is designed to be (hopefully) intuitive while also
being (hopefully) more powerful than traditional getopt or similar. it has no
@@ -18,7 +18,7 @@ the following example file is available as [example.c](doc/example.c), which
you can compile and test with yourself.
```C
-#include "../src/simple-opt.h"
+#include "../simple-opt.h"
int main(int argc, char **argv)
{
diff --git a/doc/example.c b/doc/example.c
index 18aec1c..2ff562d 100644
--- a/doc/example.c
+++ b/doc/example.c
@@ -1,4 +1,4 @@
-#include "../src/simple-opt.h"
+#include "../simple-opt.h"
int main(int argc, char **argv)
{