about summary refs log tree commit diff
diff options
context:
space:
mode:
authorllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 17:16:54 +0100
committerllzmb <46303940+llzmb@users.noreply.github.com>2021-12-02 17:16:54 +0100
commit3023a36d4d2d2f4549d637bd505ba9ebd743788b (patch)
treea86abfc74fe5b44dd93e671ba6dde8d141c7da96
parent7a8e4018a59fdabef395ca730d6e73f95e8daaed (diff)
downloadafl++-3023a36d4d2d2f4549d637bd505ba9ebd743788b.tar.gz
Change "AFLplusplus" to "AFL++"
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--frida_mode/README.md6
2 files changed, 5 insertions, 5 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c36ed9d8..0268b2e5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,4 +1,4 @@
-# How to submit a Pull Request to AFLplusplus
+# How to submit a Pull Request to AFL++
 
 All contributions (pull requests) must be made against our `dev` branch.
 
@@ -19,6 +19,6 @@ Regarding the coding style, please follow the AFL style.
 No camel case at all and use AFL's macros wherever possible
 (e.g. WARNF, FATAL, MAP_SIZE, ...).
 
-Remember that AFLplusplus has to build and run on many platforms, so
+Remember that AFL++ has to build and run on many platforms, so
 generalize your Makefiles/GNUmakefile (or your patches to our pre-existing
 Makefiles) to be as generic as possible.
diff --git a/frida_mode/README.md b/frida_mode/README.md
index 58519699..e88bda8d 100644
--- a/frida_mode/README.md
+++ b/frida_mode/README.md
@@ -120,9 +120,9 @@ x86 and x64 architectures. Implementation details can be found
 
 Dynamic instrumentation is used to augment the target application with similar
 coverage information to that inserted by `afl-gcc` or `afl-clang`. The shared
-library is also linked to the `compiler-rt` component of AFLplusplus to feedback
-this coverage information to AFL++ and also provide a fork server. It also makes
-use of the FRIDA
+library is also linked to the `compiler-rt` component of AFL++ to feedback this
+coverage information to AFL++ and also provide a fork server. It also makes use
+of the FRIDA
 [prefetch](https://github.com/frida/frida-gum/blob/56dd9ba3ee9a5511b4b0c629394bf122775f1ab7/gum/gumstalker.h#L115)
 support to feedback instrumented blocks from the child to the parent using a
 shared memory region to avoid the need to regenerate instrumented blocks on each