diff options
-rw-r--r-- | frida_mode/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frida_mode/README.md b/frida_mode/README.md index af79de07..e60340b4 100644 --- a/frida_mode/README.md +++ b/frida_mode/README.md @@ -308,7 +308,7 @@ library and call a target function within it. The dependent library can either be loaded in using `dlopen` and `dlsym` in a function marked `__attribute__((constructor()))` or the test harness can simply be linked against it. It is important that the target library is loaded before execution -of `main`, since this is the point that FRIDA mode is initialized. Otherwise, it +of `main`, since this is the point where FRIDA mode is initialized. Otherwise, it will not be possible to configure coverage for the test library using `AFL_FRIDA_INST_RANGES` or similar. |