|
From: <caw...@us...> - 2007-05-17 16:06:04
|
Revision: 2499
http://svn.sourceforge.net/rubyeclipse/?rev=2499&view=rev
Author: cawilliams
Date: 2007-05-17 09:06:02 -0700 (Thu, 17 May 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/SimilarVariableNameVisitor.java
Modified: trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/SimilarVariableNameVisitor.java
===================================================================
--- trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/SimilarVariableNameVisitor.java 2007-05-17 16:05:38 UTC (rev 2498)
+++ trunk/com.aptana.rdt/src/com/aptana/rdt/internal/parser/warnings/SimilarVariableNameVisitor.java 2007-05-17 16:06:02 UTC (rev 2499)
@@ -116,7 +116,7 @@
}
if (damerauLevenshteinDistance(modName, string) <= levenshteinThreshold(modName)) {
createProblem(map.get(name).getPosition(),
- "Variable has similar name to another in scope: Possible mis-spelling."); // FIXME Shouldn't create a problem if there is a method with this name!
+ "Variable has similar name to another in scope: Possible misspelling."); // FIXME Shouldn't create a problem if there is a method with this name!
}
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|