File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ describe('Chapter 4', function () {
80
80
} ) ;
81
81
82
82
83
- test ( "Compsition " , function ( ) {
83
+ test ( "Composition " , function ( ) {
84
84
const str = `We can only see a short distance ahead but we can see plenty there that needs to be done` ;
85
85
const explode = ( str ) => str . split ( / \s + / ) ;
86
86
const count = ( arr ) => arr . length ;
@@ -89,7 +89,7 @@ describe('Chapter 4', function () {
89
89
} ) ;
90
90
91
91
92
- test ( "More compsition " , function ( ) {
92
+ test ( "More composition " , function ( ) {
93
93
const trim = ( str ) => str . replace ( / ^ \s * | \s * $ / g, '' ) ;
94
94
const normalize = ( str ) => str . replace ( / \- / g, '' ) ;
95
95
const validLength = ( param , str ) => str . length === param ;
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ QUnit.test("Extending the core language", function () {
81
81
} ) ;
82
82
83
83
84
- QUnit . test ( "Compsition " , function ( ) {
84
+ QUnit . test ( "Composition " , function ( ) {
85
85
const str = `We can only see a short distance ahead but we can see plenty there that needs to be done` ;
86
86
const explode = ( str ) => str . split ( / \s + / ) ;
87
87
const count = ( arr ) => arr . length ;
@@ -90,7 +90,7 @@ QUnit.test("Compsition", function () {
90
90
} ) ;
91
91
92
92
93
- QUnit . test ( "More compsition " , function ( ) {
93
+ QUnit . test ( "More composition " , function ( ) {
94
94
const trim = ( str ) => str . replace ( / ^ \s * | \s * $ / g, '' ) ;
95
95
const normalize = ( str ) => str . replace ( / \- / g, '' ) ;
96
96
const validLength = ( param , str ) => str . length === param ;
You can’t perform that action at this time.
0 commit comments