aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-12-08 10:57:46 -0500
committerSimon Glass <sjg@chromium.org>2016-12-08 10:57:46 -0500
commit0fdf78b9667bdbe4560ff067bbd5e9bca6db74fb (patch)
tree6f2b0fbd6f5258b1e2a1891f96317985205e3d23 /googlemock/docs
parenta2b8a8e07628e5fd60644b6dd99c1b5e7d7f1f47 (diff)
downloadgoogletest-0fdf78b9667bdbe4560ff067bbd5e9bca6db74fb.tar.gz
googletest-0fdf78b9667bdbe4560ff067bbd5e9bca6db74fb.tar.bz2
googletest-0fdf78b9667bdbe4560ff067bbd5e9bca6db74fb.zip
Fix a few documentation nits in the mock dummies guide
Add a hyphen to 'ad hoc' and change 'distance' to plural.
Diffstat (limited to 'googlemock/docs')
-rw-r--r--googlemock/docs/ForDummies.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/ForDummies.md b/googlemock/docs/ForDummies.md
index 0da4cbe2..2c23fb41 100644
--- a/googlemock/docs/ForDummies.md
+++ b/googlemock/docs/ForDummies.md
@@ -23,8 +23,8 @@ Using Google Mock involves three basic steps:
# Why Google Mock? #
While mock objects help you remove unnecessary dependencies in tests and make them fast and reliable, using mocks manually in C++ is _hard_:
- * Someone has to implement the mocks. The job is usually tedious and error-prone. No wonder people go great distance to avoid it.
- * The quality of those manually written mocks is a bit, uh, unpredictable. You may see some really polished ones, but you may also see some that were hacked up in a hurry and have all sorts of ad hoc restrictions.
+ * Someone has to implement the mocks. The job is usually tedious and error-prone. No wonder people go great distances to avoid it.
+ * The quality of those manually written mocks is a bit, uh, unpredictable. You may see some really polished ones, but you may also see some that were hacked up in a hurry and have all sorts of ad-hoc restrictions.
* The knowledge you gained from using one mock doesn't transfer to the next.
In contrast, Java and Python programmers have some fine mock frameworks, which automate the creation of mocks. As a result, mocking is a proven effective technique and widely adopted practice in those communities. Having the right tool absolutely makes the difference.