From 2db2d54ed8828b51581941a750a8f8d2030f4899 Mon Sep 17 00:00:00 2001 From: Marc Sunet Date: Sun, 25 Dec 2022 12:57:51 -0800 Subject: [PATCH] Fix typos in FFI doc. --- content/api/ffi.mdz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/api/ffi.mdz b/content/api/ffi.mdz index 48899003..fe88be5a 100644 --- a/content/api/ffi.mdz +++ b/content/api/ffi.mdz @@ -6,8 +6,8 @@ --- Janet's Foreign Function Interface module is used to interface with native code in -a way that does not compiling native "glue" code. The tradeoff is the FFI module -is "unsafe" - there is on guarantee or even much protection from crashing your program +a way that does not require compiling native "glue" code. The tradeoff is the FFI module +is "unsafe" - there is no guarantee or even much protection from crashing your program or triggering nonsensical behavior. This departs from Janet's usual memory safe programming model.