aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2023-10-03 00:14:25 -0500
committerCalvin Rose <calsrose@gmail.com>2023-10-03 00:14:25 -0500
commiteea8aa555f67b8a95d87a56b4517c7d8d8075b18 (patch)
tree4511938c78b82e4165ef17553e1e47c3dcd436fe /README.md
parentUpdate janet_interpreter_interrupt to use new atomics (diff)
Revert dccb60b to address #1299
This commit was to address issues with a use after free error in the windows event loop, but the erroneous code was later reworked.
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 df3d3240..8385aa62 100644
--- a/README.md
+++ b/README.md
@@ -383,7 +383,7 @@ Usually, one of a few reasons:
### Can I bind to Rust/Zig/Go/Java/Nim/C++/D/Pascal/Fortran/Odin/Jai/(Some new "Systems" Programming Language)?
Probably, if that language has a good interface with C. But the programmer may need to do
-some extra work to map Janet's internal memory model may need some to that of the bound language. Janet
+some extra work to map Janet's internal memory model to that of the bound language. Janet
also uses `setjmp`/`longjmp` for non-local returns internally. This
approach is out of favor with many programmers now and doesn't always play well with other languages
that have exceptions or stack-unwinding.