diff --git a/lib/src/solver/backtracking_solver.dart b/lib/src/solver/backtracking_solver.dart index 774797cfc..b051a0fc6 100644 --- a/lib/src/solver/backtracking_solver.dart +++ b/lib/src/solver/backtracking_solver.dart @@ -74,7 +74,7 @@ class BacktrackingSolver { /// packages. final _forceLatest = new Set(); - /// The set of packages whose dependecy is being overridden by the root + /// The set of packages whose dependency is being overridden by the root /// package, keyed by the name of the package. /// /// Any dependency on a package that appears in this map will be overriden @@ -360,7 +360,7 @@ class BacktrackingSolver { /// Backtracks from the current failed solution and determines the next /// solution to try. /// - /// This backjumps based on the cause of previous failures to minize + /// This backjumps based on the cause of previous failures to minimize /// backtracking. /// /// Returns `true` if there is a new solution to try.