diff --git a/Unofficial-FAQ.md b/Unofficial-FAQ.md index 0234578..c7d599b 100644 --- a/Unofficial-FAQ.md +++ b/Unofficial-FAQ.md @@ -69,7 +69,7 @@ Usually this comes from Nim's ability to dereference null pointers and it's deal - `not nil` Annotation: - You can use this annotation on any nilable type in your code and the compiler statically checks at compile time that your code can't possibly have a null pointer for that var - Compiler flags: - - you can pass flags like `-fsanitze`, or `-fsanitize=null` for nil checks, which provide minimal overhead. + - you can pass flags like `-fsanitize`, or `-fsanitize=null` for nil checks, which provide minimal overhead. - In the near future, `-nilChecks:On|Off` will be available for explicit nil checking and instead of Segmentation Faults, when a null pointer is dereferenced, it will be a NilError Exception - Also in the near future, `-d:safety` will be available to use along with `-d:release` for performance _and_ safety (see: [#2809](https://github.com/Araq/Nim/issues/2809)) - `-d:release` config