diff --git a/src/doc/src/reference/resolver.md b/src/doc/src/reference/resolver.md index af02d6cf28b..151648f43e7 100644 --- a/src/doc/src/reference/resolver.md +++ b/src/doc/src/reference/resolver.md @@ -50,7 +50,7 @@ Tilde | `~1.2` | >=1.2.0, <1.3.0 | Minimum version, with restr Wildcard | `1.*` | >=1.0.0, <2.0.0 | Any version in the `*` position. Equals | `=1.2.3` | =1.2.3 | Exactly the specified version only. Comparison | `>1.1` | >=1.2.0 | Naive numeric comparison of specified digits. -Compound | >=1.2, <1.5 | >1.2.0, <1.5.0 | Multiple requirements that must be simultaneously satisfied. +Compound | >=1.2, <1.5 | >=1.2.0, <1.5.0 | Multiple requirements that must be simultaneously satisfied. When multiple packages specify a dependency for a common package, the resolver attempts to ensure that they use the same version of that common package, as