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:37:21 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 21:08:26 +0100
commitc85e0dc4f0e0a6deedfb7318292e1939503a10c2 (patch)
tree2113f2ff4f9cba6b8c470d12a9b69af8877c170a /utils/qbdi_mode
parentfcbaddfd2b3f4dece001f1d4141d7dce75da1e81 (diff)
downloadafl++-c85e0dc4f0e0a6deedfb7318292e1939503a10c2.tar.gz
Remove the word "we"
Diffstat (limited to 'utils/qbdi_mode')
-rwxr-xr-xutils/qbdi_mode/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/qbdi_mode/README.md b/utils/qbdi_mode/README.md
index cd59fb9c..c8d46fca 100755
--- a/utils/qbdi_mode/README.md
+++ b/utils/qbdi_mode/README.md
@@ -131,7 +131,8 @@ int target_func(char *buf, int size) {
 
 This could be built to `libdemo.so`.
 
-Then we should load the library in template.cpp and find the `target` function address.
+Then load the library in template.cpp and find the `target` function address:
+
 ```c
     void *handle = dlopen(lib_path, RTLD_LAZY);
 	..........................................
@@ -140,7 +141,7 @@ Then we should load the library in template.cpp and find the `target` function a
     p_target_func = (target_func)dlsym(handle, "target_func");
 ```
 
-then we read the data from file and call the function in `fuzz_func`
+Then read the data from file and call the function in `fuzz_func`:
 
 ```c
 QBDI_NOINLINE int fuzz_func() {