Skip to content

Commit 9da97d3

Browse files
authored
Merge pull request #877 from windofwind/fix-typia-home-link
Fixed the typia homepage address.
2 parents ab39b05 + 451cc59 commit 9da97d3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/http.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ Object.assign(createParameter, Namespace.assert("http.createParameter"));
11431143
* @internal
11441144
*/
11451145
function halt(name: string): never {
1146-
throw new Error(
1147-
`Error on typia.http.${name}(): no transform has been configured. Read and follow https://typia.misc.io/docs/setup please.`,
1148-
);
1146+
throw new Error(
1147+
`Error on typia.http.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`,
1148+
);
11491149
}

src/misc.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ Object.assign(createValidatePrune, validatePrune);
645645
* @internal
646646
*/
647647
function halt(name: string): never {
648-
throw new Error(
649-
`Error on typia.misc.${name}(): no transform has been configured. Read and follow https://typia.misc.io/docs/setup please.`,
650-
);
648+
throw new Error(
649+
`Error on typia.misc.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`,
650+
);
651651
}

0 commit comments

Comments
 (0)