Author: simonetripodi
Date: Thu Jun 30 12:08:11 2011
New Revision: 1141498
URL: http://svn.apache.org/viewvc?rev=1141498&view=rev
Log:
typos in comments
Modified:
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java
Modified:
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java?rev=1141498&r1=1141497&r2=1141498&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java
(original)
+++
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java
Thu Jun 30 12:08:11 2011
@@ -149,7 +149,7 @@ public class GraphColoringTestCase
{
UndirectedMutableGraph<Vertex, Edge> g1 =
GraphUtils.buildSudokuGraph();
- // The true color number fot this graph is 9. but the greedy euristics
is not the best and returns 11.
+ // The true color number for this graph is 9. but the greedy heuristic
is not the best and returns 11.
ColoredVertices<Vertex> sudoku = GraphColoring.coloring( g1 );
assertEquals( 11, sudoku.getRequiredColors() );