From 9b17acee5fe52ef21a4aa8b63ae96ce80af11e4f Mon Sep 17 00:00:00 2001 From: jochongs Date: Tue, 5 Mar 2024 23:56:16 +0900 Subject: [PATCH] fix: fix typo --- website/pages/docs/core/TypedFormData.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/core/TypedFormData.mdx b/website/pages/docs/core/TypedFormData.mdx index 9e6e7a0b0..15d23cd70 100644 --- a/website/pages/docs/core/TypedFormData.mdx +++ b/website/pages/docs/core/TypedFormData.mdx @@ -436,7 +436,7 @@ exports.BbsArticlesController = BbsArticlesController = __decorate( Just call `@TypedFormData.Body()` function on the request body parameter, that's all. -`Nestia` will analyze your type (`IBbsArticleCreate`), and writes optimal code for the target type, in the compilation level. If you click the "Complied JavaScript File" tab of above, you can see the optimal transformation and validation code. +`Nestia` will analyze your type (`IBbsArticleCreate`), and writes optimal code for the target type, in the compilation level. If you click the "Compiled JavaScript File" tab of above, you can see the optimal transformation and validation code. Such optimization is called AOT (Ahead of Time) compilation, and it is the secret of `@TypedFormData.Body`.