Skip to content

Fixed typo and tweaked wording of Dependency Hells #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 6, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Documentation/DependencyHells.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A package may have dependencies that are specified too strictly,
which causes a package to lock that dependency to a particular version.

## Namespace Collision
A package may have two or more dependencies may have the same name.
A package may have two or more dependencies that have the same name.
For example, a `Person` package depends on
an `Addressable` package that defines a protocol
for assigning a mailing address to a person,
Expand All @@ -51,7 +51,7 @@ A package may have two or more dependencies may have the same name.

## Broken Software
A package may have a dependency with an outstanding bug
that is impacting usability, security, performance.
that is impacting usability, security, or performance.
This may simply be a matter of timeliness on the part of the package maintainers,
or a disagreement about their expectations for the package.

Expand Down