From 20a33541a61e25be2b1bba4d673966cbe636a5a7 Mon Sep 17 00:00:00 2001 From: watcol Date: Tue, 26 Jul 2022 16:49:14 +0900 Subject: [PATCH] fix(docs): document `@null` --- docs/language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language.md b/docs/language.md index 35290bd..89dc925 100644 --- a/docs/language.md +++ b/docs/language.md @@ -501,7 +501,6 @@ key = "foo" Built-in key pattern is a pattern to access values integrated with a transpiler, starts with a commercial at (`@`, `U+0040`), - - `@output` ... A [string](#string) to specify destination path to output a transpiled source. Write only. - `@type` ... A [string](#string) to specify file type to transpile. @@ -512,6 +511,7 @@ starts with a commercial at (`@`, `U+0040`), - `@inf` ... A [float](#float) expresses positive infinity. Read only. - `@true` ... A [boolean](#boolean) expresses true. Read only. - `@false` ... A [boolean](#boolean) expresses false. Read only. +- `@null` ... A [null](#null) value. Read only. Note that these values are file-specific, and independent from the root scope.