aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Surgeon <60354262+DeadlySurgeon@users.noreply.github.com>2020-03-09 19:18:36 -0500
committerGitHub <noreply@github.com>2020-03-09 20:18:36 -0400
commita01b7a304ecfab0faddcd23c3b00adbc0f1b4b6f (patch)
tree5c32a3cb49aee5f02b2f20f3f3c193bc7e78148c
parentfa36afbb6c790bdfdf589309e0696eb8547fceaf (diff)
downloadxesite-a01b7a304ecfab0faddcd23c3b00adbc0f1b4b6f.tar.xz
xesite-a01b7a304ecfab0faddcd23c3b00adbc0f1b4b6f.zip
Light proof reading. (#125)
-rw-r--r--blog/how-i-start-nix-2020-03-08.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/blog/how-i-start-nix-2020-03-08.markdown b/blog/how-i-start-nix-2020-03-08.markdown
index 282096b..39f81c4 100644
--- a/blog/how-i-start-nix-2020-03-08.markdown
+++ b/blog/how-i-start-nix-2020-03-08.markdown
@@ -10,9 +10,9 @@ tags:
# How I Start: Nix
[Nix][nix] is a tool that helps people create reproducible builds. This means that
-given the a known input, you can get the same output on other machines.Let's
-build and deploy a small Rust service with Nix. This will not require the Rust
-compiler to be installed with [rustup][rustup] or similar.
+given a known input, you can get the same output on other machines. Let's build
+and deploy a small Rust service with Nix. This will not require the Rust compiler
+to be installed with [rustup][rustup] or similar.
[nix]: https://nixos.org/nix/
[rustup]: https://rustup.rs
@@ -353,7 +353,7 @@ Then download/build Rocket with `cargo build`:
$ cargo build
```
-This will download all of the dependencies you need and precompile Rocket. This
+This will download all of the dependencies you need and precompile Rocket, and it
will help speed up later builds.
### Write our "hello world" route