about summary refs log tree commit diff
path: root/utils/qbdi_mode
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 20:14:54 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 21:08:16 +0100
commitfcbaddfd2b3f4dece001f1d4141d7dce75da1e81 (patch)
tree1c9c4ea6da4c5be170d0213a4ff73b0abdd59509 /utils/qbdi_mode
parentb7395fa46710673602b8fb7257e502e5f129a56c (diff)
downloadafl++-fcbaddfd2b3f4dece001f1d4141d7dce75da1e81.tar.gz
Fix spelling of words related to "build"
Diffstat (limited to 'utils/qbdi_mode')
-rwxr-xr-xutils/qbdi_mode/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/qbdi_mode/README.md b/utils/qbdi_mode/README.md
index 2e8b01d4..cd59fb9c 100755
--- a/utils/qbdi_mode/README.md
+++ b/utils/qbdi_mode/README.md
@@ -34,9 +34,9 @@ For x86 standalone-toolchain
 ./build/tools/make_standalone_toolchain.py --arch x86 --api 21 --install-dir ../android-standalone-toolchain-x86
 ```
 
-In alternative you can also use the prebuilt toolchain, in that case make sure
+In alternative you can also use the pre-built toolchain, in that case make sure
 to set the proper CC and CXX environment variables because there are many
-different compilers for each API version in the prebuilt toolchain.
+different compilers for each API version in the pre-built toolchain.
 
 For example:
 
@@ -129,7 +129,7 @@ int target_func(char *buf, int size) {
 }
 ```
 
-This could be build to `libdemo.so`.
+This could be built to `libdemo.so`.
 
 Then we should load the library in template.cpp and find the `target` function address.
 ```c