From 1dd569988849b97c85779b116d50170ddf0137d1 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Tue, 20 Sep 2022 12:23:02 +0200 Subject: [PATCH] less strict wording --- source/tutorials/nix-language.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/tutorials/nix-language.md b/source/tutorials/nix-language.md index 15d7794..fede9b2 100644 --- a/source/tutorials/nix-language.md +++ b/source/tutorials/nix-language.md @@ -68,13 +68,13 @@ Read detailed explanations if you want to make sure you fully understand the exa - Familiarity with software development - Familiarity with Unix shell, to read command line examples -- [A Nix installation](./install-nix) to run the examples +- A [Nix installation](./install-nix) to run the examples ### How to run the examples? -- Every valid piece of Nix language code is a *Nix expression*. +- A piece of Nix language code is a *Nix expression*. - Evaluating a Nix expression produces a *Nix value*. -- The content of every *Nix file* (file extension `.nix`) is a Nix expression. +- The content of a *Nix file* (file extension `.nix`) is a Nix expression. :::{note} To *evaluate* means to transform an expression into a value according to the language rules.