about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/posts/nix-shell-note.md
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-10-04T17·55-0700
committerclbot <clbot@tvl.fyi>2022-10-07T18·19+0000
commita572f8e23d1ef0fee861f809b402d5131b4d6da2 (patch)
tree168b6e819784805e4d4fe71a331fb6be6186f843 /users/wpcarro/website/blog/posts/nix-shell-note.md
parentba22b09f71b105d92149d30f2a026daaf95d3223 (diff)
fix(wpcarro/blog): Fix markdown hyperlink syntax r/5053
i always seem to get this wrong

Change-Id: Ib6f31523aba1d9f9a32d9af95b96b8d75e0ec16e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6863
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
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!