summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2021-10-28 10:48:34 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2021-10-28 10:48:34 +0200
commitdded550fcd240bdf3b0acc0740ad174975d3b4a0 (patch)
treea0ad0a378537f36e9802ef1f09e16ee6861f7601
parent19b87ec97df2819e4f4862d1c7521a4fec2e20fc (diff)
doc: fix typo
-rw-r--r--doc/contributing/coding-conventions.chapter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/contributing/coding-conventions.chapter.md b/doc/contributing/coding-conventions.chapter.md
index 7a8e7741a330..79d90c23a40f 100644
--- a/doc/contributing/coding-conventions.chapter.md
+++ b/doc/contributing/coding-conventions.chapter.md
@@ -181,7 +181,7 @@
rev = "${version}";
```
-- Filling lists condionally _should_ be done with `lib.optional(s)` instead of using `if cond then [ ... ] else null` or `if cond then [ ... ] else [ ]`.
+- Building lists conditionally _should_ be done with `lib.optional(s)` instead of using `if cond then [ ... ] else null` or `if cond then [ ... ] else [ ]`.
```nix
buildInputs = lib.optional stdenv.isDarwin iconv;