summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2017-09-01 13:38:07 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2017-09-01 13:38:07 -0400
commit26068822d801b348fd6d96e730625d394eb56974 (patch)
tree207bd5fe141a4d5a3e279c62d250d16c82aafe08 /doc
parentb35972b3fa4e844accc01a87b5b8d1e6676d16bd (diff)
downloadnixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar.gz
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar.bz2
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar.lz
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar.xz
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.tar.zst
nixpkgs-26068822d801b348fd6d96e730625d394eb56974.zip
documentation: fix some spelling
Diffstat (limited to 'doc')
-rw-r--r--doc/coding-conventions.xml4
-rw-r--r--doc/languages-frameworks/python.md2
-rw-r--r--doc/languages-frameworks/rust.md2
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/coding-conventions.xml b/doc/coding-conventions.xml
index 0457018f7d0..0776e70f14e 100644
--- a/doc/coding-conventions.xml
+++ b/doc/coding-conventions.xml
@@ -365,7 +365,7 @@ splitting up an existing category.</para>
   <varlistentry>
     <term>If it’s a (set of) <emphasis>tool(s)</emphasis>:</term>
     <listitem>
-      <para>(A tool is a relatively small program, especially one intented
+      <para>(A tool is a relatively small program, especially one intended
       to be used non-interactively.)</para>
       <variablelist>
         <varlistentry>
@@ -608,7 +608,7 @@ evaluate correctly.</para>
 </section>
 <section xml:id="sec-sources"><title>Fetching Sources</title>
   <para>There are multiple ways to fetch a package source in nixpkgs. The
-    general guidline is that you should package sources with a high degree of
+    general guideline is that you should package sources with a high degree of
     availability. Right now there is only one fetcher which has mirroring
     support and that is <literal>fetchurl</literal>. Note that you should also
     prefer protocols which have a corresponding proxy environment variable.
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index c57fd4aec17..f2de0225b1d 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -590,7 +590,7 @@ By default tests are run because `doCheck = true`. Test dependencies, like
 e.g. the test runner, should be added to `buildInputs`.
 
 By default `meta.platforms` is set to the same value
-as the interpreter unless overriden otherwise.
+as the interpreter unless overridden otherwise.
 
 ##### `buildPythonPackage` parameters
 
diff --git a/doc/languages-frameworks/rust.md b/doc/languages-frameworks/rust.md
index ef6ebc392b3..481b76fb78f 100644
--- a/doc/languages-frameworks/rust.md
+++ b/doc/languages-frameworks/rust.md
@@ -17,7 +17,7 @@ into the `environment.systemPackages` or bring them into scope with
 `nix-shell -p rustStable.rustc -p rustStable.cargo`.
 
 There are also `rustBeta` and `rustNightly` package sets available.
-These are not updated very regulary. For daily builds use either rustup from
+These are not updated very regularly. For daily builds use either rustup from
 nixpkgs or use the [Rust nightlies overlay](#using-the-rust-nightlies-overlay).
 
 ## Packaging Rust applications