Skip to content

Commit

Permalink
📝 Fix outdated code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed Sep 28, 2022
1 parent 0e07574 commit d4c546d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/browser/wretch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ describe("Wretch", function () {
expect(accepted).toBeTruthy()
})

it("should allow url, query parameters & options modifications and return a fresh new Wretcher object containing the change", async function () {
it("should allow url, query parameters & options modifications and return a fresh new Wretch object containing the change", async function () {
const obj1 = wretch("...")
const obj2 = obj1.url(_URL, true)
expect(obj1["_url"]).toBe("...")
Expand Down
2 changes: 1 addition & 1 deletion test/deno/wretch_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ describe("Wretch", function () {
assertEquals(accepted, true)
})

it("should allow url, query parameters & options modifications and return a fresh new Wretcher object containing the change", async function () {
it("should allow url, query parameters & options modifications and return a fresh new Wretch object containing the change", async function () {
const obj1 = wretch("...")
const obj2 = obj1.url(_URL, true)
assertEquals(obj1["_url"], "...")
Expand Down
2 changes: 1 addition & 1 deletion test/node/wretch.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ describe("Wretch", function () {
expect(accepted).toBeTruthy()
})

it("should allow url, query parameters & options modifications and return a fresh new Wretcher object containing the change", async function () {
it("should allow url, query parameters & options modifications and return a fresh new Wretch object containing the change", async function () {
const obj1 = wretch("...")
const obj2 = obj1.url(_URL, true)
expect(obj1["_url"]).toBe("...")
Expand Down

0 comments on commit d4c546d

Please sign in to comment.