Skip to content

Commit

Permalink
fix util word misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
liudonghua123 committed Apr 26, 2024
1 parent 94d76f9 commit 7d42884
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import chalk from "chalk";
import inquirer from "inquirer";
import ora from "ora";
import figlet from "figlet";
import { say_hello, times_str } from "./utli.js";
import { say_hello, times_str } from "./util.js";

/**
* show the logo
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/utli.js → test/util.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, it } from 'node:test';
import assert from 'node:assert';
import { say_hello, times_str } from "../src/utli.js";
import { say_hello, times_str } from "../src/util.js";

describe('utli testing', () => {
const message = 'hi'
Expand Down

0 comments on commit 7d42884

Please sign in to comment.