Skip to content

Commit

Permalink
Fixup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Dec 20, 2024
1 parent 5fde269 commit 69666ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [v5.17.0] - 2024-12-20
### Added
- `PreferEnumerableInCurrent` option to `ResolutionBehavior` enum. When this option is used upon enumerable resolution, services from the current (which initiated the resolution request) container are preferred, ignoring services from parent containers.
- `PreferEnumerableInCurrent` option to `ResolutionBehavior` enum. When this option is used upon enumerable resolution, services from the current container (which initiated the resolution request) are preferred, ignoring services from parent containers.
### Changed
- Enumerable resolution requests across child-parent containers resulted in the wrong order. Now, the resulting collection contains the parent services first and the child services at the end of the collection.

Expand Down
2 changes: 1 addition & 1 deletion src/Resolution/ResolutionBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public enum ResolutionBehavior
ParentDependency = 1 << 2,

/// <summary>
/// Upon enumerable resolution, services from the current (which initiated the resolution request) container are preferred, ignoring services from parent containers.
/// Upon enumerable resolution, services from the current container (which initiated the resolution request) are preferred, ignoring services from parent containers.
/// </summary>
PreferEnumerableInCurrent = 1 << 3,
}

0 comments on commit 69666ee

Please sign in to comment.