Skip to content

Commit 8476932

Browse files
committed
copy edits [ci skip]
1 parent 727d0af commit 8476932

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

guides/source/development_dependencies_install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Ruby on Rails uses Git for source code control. The [Git homepage](http://git-sc
2424
* [Try Git course](http://try.github.io/) is an interactive course that will teach you the basics.
2525
* The [official Documentation](http://git-scm.com/documentation) is pretty comprehensive and also contains some videos with the basics of Git
2626
* [Everyday Git](http://schacon.github.io/git/everyday.html) will teach you just enough about Git to get by.
27-
* The [PeepCode screencast](https://peepcode.com/products/git) on Git ($12) is easier to follow.
27+
* The [PeepCode screencast](https://peepcode.com/products/git) on Git is easier to follow.
2828
* [GitHub](http://help.github.com) offers links to a variety of Git resources.
2929
* [Pro Git](http://git-scm.com/book) is an entire book about Git with a Creative Commons license.
3030

guides/source/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Here's an extract of the assertions you can use with `minitest`, the default tes
372372
| `assert_raises( exception1, exception2, ... ) { block }` | Ensures that the given block raises one of the given exceptions.|
373373
| `assert_nothing_raised( exception1, exception2, ... ) { block }` | Ensures that the given block doesn't raise one of the given exceptions.|
374374
| `assert_instance_of( class, obj, [msg] )` | Ensures that `obj` is an instance of `class`.|
375-
| `refute_instance_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class`.|
375+
| `refute_instance_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class`.|
376376
| `assert_kind_of( class, obj, [msg] )` | Ensures that `obj` is or descends from `class`.|
377377
| `refute_kind_of( class, obj, [msg] )` | Ensures that `obj` is not an instance of `class` and is not descending from it.|
378378
| `assert_respond_to( obj, symbol, [msg] )` | Ensures that `obj` responds to `symbol`.|

0 commit comments

Comments
 (0)