Merge pull request #27 from christopherscott/typosfix

fixed some minor typos with js examples
This commit is contained in:
Jarrod Overson 2013-02-22 15:16:13 -08:00
commit 78cd9cc35b
2 changed files with 9 additions and 9 deletions

View File

@ -152,14 +152,14 @@ Sample configuration to run Pivotal Labs' example Jasmine application.
grunt.initConfig({ grunt.initConfig({
jasmine: { jasmine: {
pivotal: { pivotal: {
src: 'src/**/*.js' src: 'src/**/*.js',
options: { options: {
specs: 'spec/*Spec.js', specs: 'spec/*Spec.js',
helpers: 'spec/*Helper.js' helpers: 'spec/*Helper.js'
} }
} }
} }
} });
``` ```
#### Supplying a custom template #### Supplying a custom template
@ -179,7 +179,7 @@ grunt.initConfig({
} }
} }
} }
} });
``` ```
#### Sample RequireJS/NPM Template usage #### Sample RequireJS/NPM Template usage
@ -196,7 +196,7 @@ grunt.initConfig({
} }
} }
} }
} });
``` ```
NPM Templates are just node modules, so you can write and treat them as such. NPM Templates are just node modules, so you can write and treat them as such.
@ -221,4 +221,4 @@ for more information on the RequireJS template.
Task submitted by [Jarrod Overson](http://jarrodoverson.com) Task submitted by [Jarrod Overson](http://jarrodoverson.com)
*This file was generated on Wed Feb 20 2013 12:35:56.* *This file was generated on Fri Feb 22 2013 10:06:21.*

View File

@ -7,14 +7,14 @@ Sample configuration to run Pivotal Labs' example Jasmine application.
grunt.initConfig({ grunt.initConfig({
jasmine: { jasmine: {
pivotal: { pivotal: {
src: 'src/**/*.js' src: 'src/**/*.js',
options: { options: {
specs: 'spec/*Spec.js', specs: 'spec/*Spec.js',
helpers: 'spec/*Helper.js' helpers: 'spec/*Helper.js'
} }
} }
} }
} });
``` ```
## Supplying a custom template ## Supplying a custom template
@ -34,7 +34,7 @@ grunt.initConfig({
} }
} }
} }
} });
``` ```
## Sample RequireJS/NPM Template usage ## Sample RequireJS/NPM Template usage
@ -51,7 +51,7 @@ grunt.initConfig({
} }
} }
} }
} });
``` ```
NPM Templates are just node modules, so you can write and treat them as such. NPM Templates are just node modules, so you can write and treat them as such.