aboutsummaryrefslogtreecommitdiff
path: root/c/README.md
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2021-10-21 17:23:46 -0400
committerJack O'Connor <[email protected]>2021-10-21 17:23:51 -0400
commitea37dbd4b0e6c8402d5531b8eede4aa8e12ac7b6 (patch)
treefab43eee8fa89f8508e3df0ad26f133859dd416c /c/README.md
parent3c107b7dd282cea9fe5cc1e554cd45591d4af2fb (diff)
a small capitalization change
Diffstat (limited to 'c/README.md')
-rw-r--r--c/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/README.md b/c/README.md
index eacdc54..e3fca0c 100644
--- a/c/README.md
+++ b/c/README.md
@@ -250,7 +250,7 @@ gcc -shared -O3 -o libblake3.so -DBLAKE3_NO_SSE2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_A
## ARM NEON
-The NEON implementation is enabled by default on AARCH64, but not on
+The NEON implementation is enabled by default on AArch64, but not on
other ARM targets, since not all of them support it. To enable it, set
`BLAKE3_USE_NEON=1`. Here's an example of building a shared library on
ARM Linux with NEON support:
@@ -260,7 +260,7 @@ gcc -shared -O3 -o libblake3.so -DBLAKE3_USE_NEON=1 blake3.c blake3_dispatch.c \
blake3_portable.c blake3_neon.c
```
-To explicitiy disable using NEON instructions on AARCH64, set
+To explicitiy disable using NEON instructions on AArch64, set
`BLAKE3_USE_NEON=0`.
```bash