From 41250bb231814f78371057eca7a703f569a7f2b3 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Thu, 18 Aug 2022 15:39:39 +0200 Subject: [PATCH] reorder first sentences --- source/tutorials/nix-language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tutorials/nix-language.md b/source/tutorials/nix-language.md index cc22e48..27a5038 100644 --- a/source/tutorials/nix-language.md +++ b/source/tutorials/nix-language.md @@ -2,8 +2,8 @@ # Nix language basics -The Nix language is a domain-specific, purely functional, lazily evaluated, dynamically typed programming language. -It is used to declare packages and configurations for the [Nix package manager][nix-manual]. +The Nix language is used to declare packages and configurations for the [Nix package manager][nix-manual]. +It is a domain-specific, purely functional, lazily evaluated, dynamically typed programming language. The purpose of Nix language is to define structured data. It supports functions, for conveniently producing more complex data, and assigning names, for manipulating complex data as units.