about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/posts/nix-shell-note.md
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/website/blog/posts/nix-shell-note.md')
-rw-r--r--users/wpcarro/website/blog/posts/nix-shell-note.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/wpcarro/website/blog/posts/nix-shell-note.md b/users/wpcarro/website/blog/posts/nix-shell-note.md
index 6f709b4f1a..da33c846ce 100644
--- a/users/wpcarro/website/blog/posts/nix-shell-note.md
+++ b/users/wpcarro/website/blog/posts/nix-shell-note.md
@@ -28,7 +28,7 @@ Pass the Nix expression to `nix-shell -p`:
 ## Explanation
 
 This works because Nix forwards the arguments passed to `-p` (i.e. `--packages`)
-and interpolates them into this expression here: [source](nix-src)
+and interpolates them into this expression here: [source][nix-src]
 
 ```nix
 { ... }@args:
@@ -43,7 +43,7 @@ with import <nixpkgs> args;
 ```
 
 So really you can pass-in *any* valid Nix expression that produces a derivation
-and `nix-shell` will put their outputs on your `PATH`.
+and `nix-shell` will put its outputs on your `PATH`.
 
 Enjoy!