Commit 06de6afc 06de6afc938e6571e230ef5d82d84758c5788879 by Nicolas Perriault

Merge pull request #718 from phillipalexander/fix-readme-typo

refs #717 - fixed typo in readme
2 parents 8ca3e857 9dca17b8
......@@ -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');
......