Skip to main content

README: fix a couple of broken links

ID
d9af7b6
date
2026-05-17 16:34:38+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
2fe4695
message
README: fix a couple of broken links
changed files
1 file, 3 additions, 3 deletions

Changed files

README.md (4199) → README.md (4190)

diff --git a/README.md b/README.md
index e75f981..4cbdd56 100644
--- a/README.md
+++ b/README.md
@@ -111,9 +111,9 @@ def dominant_colours(path, *, max_colours=5):
 
 ## Further reading
 
--   I've written [an accompanying blog post](https://alexwlchan.net/2021/11/dominant-colours/) that talks more about the motivation behind the tool, a high-level overview of how it works, and why I chose to write it in Rust.
+-   I've written [an accompanying blog post](https://alexwlchan.net/2021/dominant-colours/) that talks more about the motivation behind the tool, a high-level overview of how it works, and why I chose to write it in Rust.
 
--   [Getting a tint colour from an image with Python and k-means](https://alexwlchan.net/2019/08/finding-tint-colours-with-k-means/) – a blog post I wrote in August 2019 explaining how to find dominant colours.
+-   [Getting a tint colour from an image with Python and k-means](https://alexwlchan.net/2019/finding-tint-colours-with-k-means/) – a blog post I wrote in August 2019 explaining how to find dominant colours.
 
     My original implementation was in Python.
     I've replaced it with a standalone Rust tool so I can easily share it across multiple projects, and because Rust is noticeably faster for this sort of thing.
@@ -123,7 +123,7 @@ def dominant_colours(path, *, max_colours=5):
     The command-line tool has a lot of features, more than I need.
     I wanted a very simple tool that does one thing, so I wrote dominant_colours as a wrapper around the library.
 
--   [Drawing coloured squares/text in my terminal with Python](https://alexwlchan.net/2021/04/coloured-squares/) – a blog post I wrote in April 2021 explaining how to use ANSI escape codes to print arbitrary colours in a terminal.
+-   [Drawing coloured squares/text in my terminal with Python](https://alexwlchan.net/2021/coloured-squares/) – a blog post I wrote in April 2021 explaining how to use ANSI escape codes to print arbitrary colours in a terminal.
 
     I used the same escape codes to get the coloured output in this tool.