about summary refs log tree commit diff
path: root/doc/languages-frameworks/cuelang.section.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/languages-frameworks/cuelang.section.md')
-rw-r--r--doc/languages-frameworks/cuelang.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/cuelang.section.md b/doc/languages-frameworks/cuelang.section.md
index 93c94027ae291..ef408c7bb19be 100644
--- a/doc/languages-frameworks/cuelang.section.md
+++ b/doc/languages-frameworks/cuelang.section.md
@@ -37,9 +37,9 @@ pkgs.writeCueValidator
 ```
 
 - The first parameter is the Cue schema file.
-- The second paramter is an options parameter, currently, only: `document` can be passed.
+- The second parameter is an options parameter, currently, only: `document` can be passed.
 
-`document` : match your input data against this fragment of structure or definition, e.g. you may use the same schema file but differents documents based on the data you are validating.
+`document` : match your input data against this fragment of structure or definition, e.g. you may use the same schema file but different documents based on the data you are validating.
 
 Another example, given the following `validator.nix` :
 ```