From 16a51daac8bf8271f4494d84db580d01847cffa4 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Tue, 22 May 2012 15:44:14 +0200 Subject: [PATCH] Fix typo in comment --- src/Composer/DependencyResolver/RuleWatchGraph.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/DependencyResolver/RuleWatchGraph.php b/src/Composer/DependencyResolver/RuleWatchGraph.php index 4e92f378c..2f27ecd22 100644 --- a/src/Composer/DependencyResolver/RuleWatchGraph.php +++ b/src/Composer/DependencyResolver/RuleWatchGraph.php @@ -17,7 +17,7 @@ namespace Composer\DependencyResolver; * * All rules generated for solving a SAT problem should be inserted into the * graph. When a decision on a literal is made, the graph can be used to - * propagate the decision to all other rules involving the rule, leading to + * propagate the decision to all other rules involving the literal, leading to * other trivial decisions resulting from unit clauses. * * @author Nils Adermann