git » libfiu » commit fbcf1e5

Replace occurrences of "failure injection" with "fault injection"

author Alberto Bertogli
2009-06-17 01:06:24 UTC
committer Alberto Bertogli
2009-06-17 01:11:01 UTC
parent ab57a0ec2a141e95a75b85b0818fc37bbc08c309

Replace occurrences of "failure injection" with "fault injection"

The term "fault injection" is more correct and consistent with the rest of
the documentation.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

README +1 -1
doc/guide.rst +1 -1
libfiu/libfiu.3 +1 -1

diff --git a/README b/README
index 7e8cc80..312e4ed 100644
--- a/README
+++ b/README
@@ -7,7 +7,7 @@ libfiu is a C library for fault injection. It provides functions to mark
 enable/disable the failure of those points (the "control API"). It's in the
 public domain, see the LICENSE file for more information.
 
-The core API is used inside the code wanting to perform failure injection on.
+The core API is used inside the code wanting to perform fault injection on.
 The control API is used inside the testing code, in order to control the
 injection of failures.
 
diff --git a/doc/guide.rst b/doc/guide.rst
index 1fdff7b..cf2ff3f 100644
--- a/doc/guide.rst
+++ b/doc/guide.rst
@@ -80,7 +80,7 @@ you can test how your code behaves under that condition, which was otherwise
 hard to trigger.
 
 As you can see, libfiu's API has to "sides": a core API and a control API. The
-core API is used inside the code wanting to perform failure injection on. The
+core API is used inside the code wanting to perform fault injection on. The
 control API is used inside the testing code, in order to control the injection
 of failures.
 
diff --git a/libfiu/libfiu.3 b/libfiu/libfiu.3
index 60d8953..4178027 100644
--- a/libfiu/libfiu.3
+++ b/libfiu/libfiu.3
@@ -35,7 +35,7 @@ libfiu is a library for fault injection. It provides functions to mark "points
 of failure" inside your code (the "core API"), and functions to enable/disable
 the failure of those points (the "control API").
 
-The core API is used inside the code wanting to perform failure injection on.
+The core API is used inside the code wanting to perform fault injection on.
 The control API is used inside the testing code, in order to control the
 injection of failures.