From a1c9ea462d7c4a79ab4eda8b90fa9c0d24dab7ad Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 7 Feb 2024 23:33:43 +0800 Subject: [PATCH] fix: typo --- docs/zh/other-usage-of-flakes/module-system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/other-usage-of-flakes/module-system.md b/docs/zh/other-usage-of-flakes/module-system.md index 7a6b33d..38bf38b 100644 --- a/docs/zh/other-usage-of-flakes/module-system.md +++ b/docs/zh/other-usage-of-flakes/module-system.md @@ -82,7 +82,7 @@ Nixpkgs 中定义的模块,其基本结构如下: - `options = { ... };`: 它类似编程语言中的变量声明,用于声明一些可配置的选项。 - `config = { ... };`: 它类似编程语言中的变量赋值,用于为 `options` 中声明的选项赋值。 -最典型的用法是:在同一 Nixpkgs 模块中,依据 `options = { ... };` 中声明的 `options` 当前的值,在 `config = { .. };` 设置为其他 `options` 赋值,这样就实现了参数化配置的功能。 +最典型的用法是:在同一 Nixpkgs 模块中,依据 `options = { ... };` 中声明的 `options` 当前的值,在 `config = { .. };` 中为其他的 `options` 赋值,这样就实现了参数化配置的功能。 直接看个例子更容易理解: