Skip to content

Commit 13eedac

Browse files
authored
Merge pull request #508 from suyiiyii/main
fix(typo): correct default value from 'den' to 'dev'
2 parents 05c56d8 + 6a6574e commit 13eedac

File tree

1 file changed

+1
-1
lines changed
  • i18n/zh-CN/docusaurus-plugin-content-docs/current/user_docs/guides

1 file changed

+1
-1
lines changed

i18n/zh-CN/docusaurus-plugin-content-docs/current/user_docs/guides/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ nginx:
8888
此外,我们可以通过 KCL 内置函数 `option` 动态接收外部参数。例如,对于下面的 KCL 文件(db.k),我们可以使用命令行 `-D` 标志来接收外部动态参数。
8989

9090
```python
91-
env: str = option("env") or "dev" # The attribute `env` has a default value "den"
91+
env: str = option("env") or "dev" # The attribute `env` has a default value "dev"
9292
database: str = option("database")
9393
hosts = {
9494
dev = "postgres.dev"

0 commit comments

Comments
 (0)