diff options
author | Zachary Scott <e@zzak.io> | 2014-12-22 03:29:16 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-22 03:29:16 -0800 |
commit | 0cf3f9adf5b1a650e7916cae75e19c1a2efe6fa2 (patch) | |
tree | c11968ffc5fc01d46cccab32a3c341832fd271e7 /guides | |
parent | f2852298a1be4d8881dcdae3a79eb68346d9679b (diff) | |
download | rails-0cf3f9adf5b1a650e7916cae75e19c1a2efe6fa2.tar.gz rails-0cf3f9adf5b1a650e7916cae75e19c1a2efe6fa2.tar.bz2 rails-0cf3f9adf5b1a650e7916cae75e19c1a2efe6fa2.zip |
Remove duplicate description of the previous line [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 7d3da22597..7ed102196f 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -212,7 +212,7 @@ Next, let's look at our first assertion: assert true ``` -This line of code is called an _assertion_. An assertion is a line of code that evaluates an object (or expression) for expected results. For example, an assertion can check: +An assertion is a line of code that evaluates an object (or expression) for expected results. For example, an assertion can check: * does this value = that value? * is this object nil? |