From 165e4ed60dafb1a20cf973bc302c96c6263477de Mon Sep 17 00:00:00 2001 From: Collin Lefeber Date: Sun, 16 Feb 2025 21:09:51 -0500 Subject: [PATCH] fix link --- posts/style_a_blog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/style_a_blog.md b/posts/style_a_blog.md index 55d1af9..aae3629 100644 --- a/posts/style_a_blog.md +++ b/posts/style_a_blog.md @@ -50,7 +50,7 @@ done `inotifywait` spits out lines of events when files change based on the options you want - here it's just modify, create, delete events in the directory. -The [`$SECONDS`][https://man.archlinux.org/man/bash.1.en#SECONDS] logic just ensures that `make` does not run N times if N files change in a fraction of a second. +The [`$SECONDS`](https://man.archlinux.org/man/bash.1.en#SECONDS) logic just ensures that `make` does not run N times if N files change in a fraction of a second. Now lets go!