From 220506e3d9ef49105e1ab1eb2be5e5c3e46b9a95 Mon Sep 17 00:00:00 2001 From: dermagen Date: Mon, 5 Aug 2024 14:49:54 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86d9e60..e1045f3 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ gcc -o skint [skint].c -lm Some compilers link `` library automatically, some require explicit option like `-lm` above. It can be built on 32-bit and 64-bit systems. -For much better performance (especially in floating-point calculations) you may pick another compiler, add optimization flags, -and some SKINT-spicific options, e.g.: +For much better performance (especially in floating-point calculations) you may pick another compiler, add optimization flags +and some SKINT-specific options, e.g.: ``` clang -o skint -O3 -D NDEBUG -D NAN_BOXING [skint].c -lm