From f9c176c1f831fa8c0713175807c74960127f86a9 Mon Sep 17 00:00:00 2001 From: Alex Kladov Date: Wed, 25 Dec 2024 08:48:05 +0000 Subject: [PATCH] typo --- content/posts/2024-12-24-minimal-version-selection-revisited.dj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2024-12-24-minimal-version-selection-revisited.dj b/content/posts/2024-12-24-minimal-version-selection-revisited.dj index 56c8ca21..35826794 100644 --- a/content/posts/2024-12-24-minimal-version-selection-revisited.dj +++ b/content/posts/2024-12-24-minimal-version-selection-revisited.dj @@ -13,7 +13,7 @@ not a specific _version_ of `foo`, but rather _a set of versions_ (a version con these versions might not had existed when you wrote `foo = "1.2.3"` line! As an author of a library, you can't actually pick your dependencies exactly. Instead, the final -application that uses your library is in charger of picking specific dependencies, including those +application that uses your library is in charge of picking specific dependencies, including those for your library. In particular, if that application depends on some other library which says `foo = "1.3.0"`, then _your_ library gets at least `1.3.0` as well, although you've written `1.2.3`.