From d7329e70325c758d69bb2cc39e799a5e5f496cbc Mon Sep 17 00:00:00 2001 From: Walfie Date: Fri, 3 Dec 2021 16:37:13 -0500 Subject: [PATCH] Fix typos --- source/templates/index.rst | 2 +- source/tutorials/building-and-running-docker-images.rst | 2 +- source/tutorials/cross-compilation.rst | 2 +- source/tutorials/installing-nixos-on-a-raspberry-pi.rst | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/templates/index.rst b/source/templates/index.rst index d4e8f53..68a9a76 100644 --- a/source/templates/index.rst +++ b/source/templates/index.rst @@ -5,4 +5,4 @@ Getting started Nix template ---------------------------- `Getting started Nix template `_ -gives you best pratices learned for setting up any kind of a development project using Nix. +gives you best practices learned for setting up any kind of development project using Nix. diff --git a/source/tutorials/building-and-running-docker-images.rst b/source/tutorials/building-and-running-docker-images.rst index ad5ac41..d317540 100644 --- a/source/tutorials/building-and-running-docker-images.rst +++ b/source/tutorials/building-and-running-docker-images.rst @@ -43,7 +43,7 @@ Docker images: .. note:: - If your running **macOS** or any other platform than ``x86_64-linux``, you'll need to either: + If you're running **macOS** or any platform other than ``x86_64-linux``, you'll need to either: - `Set up a remote builder `_ to build on Linux - :ref:`Cross compile to Linux ` by replacing ``pkgsLinux.hello`` with ``pkgs.pkgsCross.musl64.hello`` diff --git a/source/tutorials/cross-compilation.rst b/source/tutorials/cross-compilation.rst index 8cf3ac9..f1eb40c 100644 --- a/source/tutorials/cross-compilation.rst +++ b/source/tutorials/cross-compilation.rst @@ -31,7 +31,7 @@ There's actually a third platform named the target platform. It matters in cases where you'd like to distribute a compiler binary, as you'd then like to build a compiler on the build platform, compile code on the -host plaform and run the final executable on the target platform. +host platform and run the final executable on the target platform. Since that's rarely needed, we'll treat the target platform the same as the host. diff --git a/source/tutorials/installing-nixos-on-a-raspberry-pi.rst b/source/tutorials/installing-nixos-on-a-raspberry-pi.rst index bfcb749..dfb7766 100644 --- a/source/tutorials/installing-nixos-on-a-raspberry-pi.rst +++ b/source/tutorials/installing-nixos-on-a-raspberry-pi.rst @@ -194,6 +194,6 @@ Next steps and reboot to the old configuration if something broke. - To tweak bootloader options affecting hardware, `see config.txt options `_ - and change the options by runnning ``mount /dev/disk/by-label/FIRMWARE /mnt`` and opening ``/mnt/config.txt``. + and change the options by running ``mount /dev/disk/by-label/FIRMWARE /mnt`` and opening ``/mnt/config.txt``. - To see the power of declarative configuration, try replacing ``xfce`` with ``kodi`` in ``/etc/nixos/configuration.nix`` and ``reboot``.