Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-09-02 19:49:50 +0000
committereutarass2011-09-02 19:49:50 +0000
commitbb497f88a09d735f5f0ddef33c75265afbe64bf3 (patch)
treeaa8db2f6162752a3cf3a9207404a3131102648ef
parent26e80566b9069698131387c31467c00760314567 (diff)
downloadorg.eclipse.tcf-bb497f88a09d735f5f0ddef33c75265afbe64bf3.tar.gz
org.eclipse.tcf-bb497f88a09d735f5f0ddef33c75265afbe64bf3.tar.xz
org.eclipse.tcf-bb497f88a09d735f5f0ddef33c75265afbe64bf3.zip
TCF Core: Fixed misspelled class name in a comment.
-rw-r--r--plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/ILineNumbers.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/ILineNumbers.java b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/ILineNumbers.java
index ba3b09eba..f3839574f 100644
--- a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/ILineNumbers.java
+++ b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/services/ILineNumbers.java
@@ -23,11 +23,11 @@ public interface ILineNumbers extends IService {
static final String NAME = "LineNumbers";
/**
- * TextArea represent a continues area in source text mapped to
+ * CodeArea represent a continues area in source text mapped to
* continues range of code addresses.
* Line and columns are counted starting from 1.
* File name can be relative path, in such case client should
- * use TextArea directory name as origin for the path.
+ * use CodeArea directory name as origin for the path.
* File and directory names are valid on a host where code was compiled.
* It is client responsibility to map names to this host file system.
*/

Back to the top