Skip to content

Commit 9e709b4

Browse files
committed
Fix invalid links of random.mdx
1 parent 9e53681 commit 9e709b4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

website/pages/docs/random.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ exports.createRandomMember = createRandomMember;
390390
391391
392392
## Special Tags
393-
Runtime validators of `typia` provides additional type checking logic through [Type Tags](../validators/tags#type-tags) and [Comment Tags](../validators/tags#comment-tags). `typia.random<T>()` function also like that. `typia.random<T>()` function can utilize those tags to specialize the behavior of random data generation.
393+
Runtime validators of `typia` provides additional type checking logic through [Type Tags](./validators/tags#type-tags) and [Comment Tags](./validators/tags#comment-tags). `typia.random<T>()` function also like that. `typia.random<T>()` function can utilize those tags to specialize the behavior of random data generation.
394394
395-
For reference, whether you choose [Type Tags](../validators/tags#type-tags) or [Comment Tags](../validators/tags#comment-tags). `typia.random<T>()`, it is not a matter for `typia.random<T>()` function. Below two TypeScript codes are generating exactly same JavaScript code. Therefore, you can choose whatever you want considering your preference.
395+
For reference, whether you choose [Type Tags](./validators/tags#type-tags) or [Comment Tags](./validators/tags#comment-tags). `typia.random<T>()`, it is not a matter for `typia.random<T>()` function. Below two TypeScript codes are generating exactly same JavaScript code. Therefore, you can choose whatever you want considering your preference.
396396
397397
<Tabs items={[
398398
'TypeScript (Type Tags)',
@@ -585,7 +585,7 @@ As above `IRandomGenerator.CustomMap` has a little bit complicate type, it may h
585585
586586
Just define custom type tags like below, then everything would be done.
587587
588-
For reference, when defining custom type tag, `typia` enforces user to define `validate` function literal for type safety. Never forget it when you define custom type tags for random generation. Such validation logic definition may enhance your random data generator logic when combining with [`typia.assert<T>()`](../validators/assert) function.
588+
For reference, when defining custom type tag, `typia` enforces user to define `validate` function literal for type safety. Never forget it when you define custom type tags for random generation. Such validation logic definition may enhance your random data generator logic when combining with [`typia.assert<T>()`](./validators/assert) function.
589589
590590
<Tabs items={['TypeScript Source Code', 'Compiled JavaScript File']}>
591591
<Tab>

website/pages/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Tabs, Tab } from 'nextra-theme-docs'
22
import Alert from '@mui/material/Alert';
33
import Stack from '@mui/material/Stack';
44

5-
<meta http-equiv="refresh" content="0; url=/docs" />
5+
<meta httpEquiv="refresh" content="0; url=/docs" />
66

77
## Outline
88

0 commit comments

Comments
 (0)