From 4c1571fb764373d79eb2bca9ba27558206b13d9c Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 11 Dec 2025 09:53:48 -0500 Subject: [PATCH] Fix version reference in resolver example (#17085) --- docs/concepts/resolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/resolution.md b/docs/concepts/resolution.md index 65db075c5..2f60f4b37 100644 --- a/docs/concepts/resolution.md +++ b/docs/concepts/resolution.md @@ -53,7 +53,7 @@ In this example, some version of both `foo` and `bar` must be selected; however, version requires considering the dependencies of each version of `foo` and `bar`. `foo 2.0.0` and `bar 2.0.0` cannot be installed together as they conflict on their required version of `lib`, so the resolver must select either `foo 1.0.0` (along with `bar 2.0.0`) or `bar 1.0.0` (along with -`foo 1.0.0`). Both are valid solutions, and different resolution algorithms may yield either result. +`foo 2.0.0`). Both are valid solutions, and different resolution algorithms may yield either result. ## Platform markers