From 0cf3dcd880804291cb6f033cbe38b971dae8846c Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 11 Jan 2022 15:51:36 -0800 Subject: [PATCH] Fix a few typos (#191) --- pills/03-enter-environment.xml | 2 +- pills/20-basic-dependencies-and-hooks.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pills/03-enter-environment.xml b/pills/03-enter-environment.xml index adf9074..ebeb6b1 100644 --- a/pills/03-enter-environment.xml +++ b/pills/03-enter-environment.xml @@ -123,7 +123,7 @@ - Lets inspect the profile a bit: diff --git a/pills/20-basic-dependencies-and-hooks.xml b/pills/20-basic-dependencies-and-hooks.xml index 3b021d1..54b76cb 100644 --- a/pills/20-basic-dependencies-and-hooks.xml +++ b/pills/20-basic-dependencies-and-hooks.xml @@ -33,7 +33,7 @@ For the simplest dependencies where the current package directly needs another, we use the buildInputs attribute. This is exactly the pattern in taught with our builder in Pill 8. - To demo this, lets build GNU Hello, and then another package which provides a shell script that execs it. + To demo this, let's build GNU Hello, and then another package which provides a shell script that execs it. @@ -70,8 +70,8 @@ How does this work? - You might think we do something in Nix, but actually its done not at eval time but at build time in bash. - lets look at part of the fixupPhase of stdenv: + You might think we do something in Nix, but actually it's done not at eval time but at build time in bash. + let's look at part of the fixupPhase of stdenv: