diff --git a/1-js/05-data-types/03-string/3-truncate/_js.view/test.js b/1-js/05-data-types/03-string/3-truncate/_js.view/test.js index c252f16b..99149233 100644 --- a/1-js/05-data-types/03-string/3-truncate/_js.view/test.js +++ b/1-js/05-data-types/03-string/3-truncate/_js.view/test.js @@ -1,5 +1,5 @@ describe("truncate", function() { - it("truncate the long string to the given lenth (including the ellipsis)", function() { + it("truncate the long string to the given length (including the ellipsis)", function() { assert.equal( truncate("What I'd like to tell on this topic is:", 20), "What I'd like to te…" @@ -13,4 +13,4 @@ describe("truncate", function() { ); }); -}); \ No newline at end of file +});