From f0bd86b61c387a243b5789b4e589cf8a6d52f96d Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 21 Feb 2022 15:42:46 -0800 Subject: [PATCH] Use full path to LakeCtx in lake.h --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 3e9b7ad..7c5e7f1 100644 --- a/Readme.md +++ b/Readme.md @@ -44,7 +44,7 @@ If you want to build a static library: $ make liblake -The binary will be in `build/liblake.a` and you may do with it as you like. Lake creates no global variables and has no shared state. Everything is neatly wrapped up in a [`LakeCtx`](lake/blob/main/src/lake.h#L101-109) so theoretically you can run multiple interpreters in the same process. I haven't tried it yet but it should work. +The binary will be in `build/liblake.a` and you may do with it as you like. Lake creates no global variables and has no shared state. Everything is neatly wrapped up in a [`LakeCtx`](https://github.com/samsonjs/lake/blob/main/src/lake.h#L101-L109) so theoretically you can run multiple interpreters in the same process. I haven't tried it yet but it should work. Tests =====