Skip to content

Commit 621a685

Browse files
committed
Fix typo
1 parent b3a658d commit 621a685

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

library/sources/Hono.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ t.test("test access only allowed for some IP addresses", opts, async (t) => {
540540
t.equal(response.statusCode, 403);
541541
t.equal(
542542
response.body,
543-
"our IP address is not allowed to access this resource. (Your IP: 1.3.2.4)"
543+
"Your IP address is not allowed to access this resource. (Your IP: 1.3.2.4)"
544544
);
545545

546546
server.close();

library/sources/http-server/checkIfRequestIsBlocked.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable max-lines-per-function */
12
import type { ServerResponse } from "http";
23
import { Agent } from "../../agent/Agent";
34
import { getContext } from "../../agent/Context";

0 commit comments

Comments
 (0)