Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/special.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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!",
Expand Down
2 changes: 1 addition & 1 deletion test/consola.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down