aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorhalfhorst <chorst22@gmail.com>2020-05-13 14:54:44 -0700
committerhalfhorst <chorst22@gmail.com>2020-05-13 14:54:44 -0700
commit20aa258f0e835d63e70b219940f389fd106e9423 (patch)
tree7b5e7f0b8b69ee929055176acacc0a019e55217c /README.md
parent1.9.1 release. (diff)
update janetconf.h path in README embedding section
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 50816f13..5a2fa674 100644
--- a/README.md
+++ b/README.md
@@ -202,7 +202,7 @@ If installed, you can also run `man janet` and `man jpm` to get usage informatio
Janet can be embedded in a host program very easily. The normal build
will create a file `build/janet.c`, which is a single C file
that contains all the source to Janet. This file, along with
-`src/include/janet.h` and `src/include/janetconf.h` can dragged into any C
+`src/include/janet.h` and `src/conf/janetconf.h` can be dragged into any C
project and compiled into the project. Janet should be compiled with `-std=c99`
on most compilers, and will need to be linked to the math library, `-lm`, and
the dynamic linker, `-ldl`, if one wants to be able to load dynamic modules. If