Commit 9dca17b8 9dca17b837aaf174bc21b2ac8b2fc9b3c1fc6f66 by Phillip Alexander

refs #717 - fixed typo in readme

correct misspelled 'bootsrap' to 'bootstrap'
Fix #717
1 parent 97abe4b5
......@@ -45,7 +45,7 @@ First [install CasperJS](http://docs.casperjs.org/en/latest/installation.html),
Sample test to see if some dropdown can be opened:
```javascript
casper.test.begin('a twitter bootsrap dropdown can be opened', 2, function(test) {
casper.test.begin('a twitter bootstrap dropdown can be opened', 2, function(test) {
casper.start('http://twitter.github.com/bootstrap/javascript.html#dropdowns', function() {
test.assertExists('#navbar-example');
this.click('#dropdowns .nav-pills .dropdown:last-of-type a.dropdown-toggle');
......