diff --git a/examples/special.ts b/examples/special.ts index d5c07d3f..fe092147 100755 --- a/examples/special.ts +++ b/examples/special.ts @@ -16,7 +16,7 @@ consola.error({ type: "CSSError", message: "Use scss" }); consola.error(undefined, null, false, true, Number.NaN); -consola.log("We can `monospace` keyword using grave accent charachter!"); +consola.log("We can `monospace` keyword using grave accent character!"); consola.log( "We can also _underline_ words but not_this or this should_not_be_underlined!", diff --git a/test/consola.test.ts b/test/consola.test.ts index ae9e177f..746d193b 100644 --- a/test/consola.test.ts +++ b/test/consola.test.ts @@ -12,7 +12,7 @@ describe("consola", () => { } }); - test("silent log level does't print logs", async () => { + test("silent log level doesn't print logs", async () => { const logs: LogObject[] = []; const TestReporter: ConsolaReporter = { log(logObj) {