diff options
author | Theodor René Carlsen <36312737+TheodorRene@users.noreply.github.com> | 2022-01-11 17:01:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 17:01:43 +0100 |
commit | 89b4df8d9271303416ac7ce6d86f9be58f40540d (patch) | |
tree | 083d51286262222cd44cf274cf03acb8818792cd /doc/manual | |
parent | d023903b6f39b2026716d83f32850e44df26c805 (diff) |
Add link to explanation when introducing a new operator
The logical implication operator is included in this section but never explained. It might stump new readers with a pretty uncommon operator, and it's never referenced explicitly.
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/expressions/language-constructs.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/manual/src/expressions/language-constructs.md b/doc/manual/src/expressions/language-constructs.md index cb0169239..c406b6910 100644 --- a/doc/manual/src/expressions/language-constructs.md +++ b/doc/manual/src/expressions/language-constructs.md @@ -276,6 +276,7 @@ stdenv.mkDerivation { ... } ``` +("->" is a boolean operation known as [logical implication](https://en.wikipedia.org/wiki/Truth_table#Logical_implication)) The points of interest are: |