Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Typo fixes in org.eclipse.cdt.debug.core.cdi.model

While reading through the model interfaces, I came across a couple
typos.  One is purely cosmetic, in a comment.  The other changes the
names of a couple methods in the interface.

Tom

Index: src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java,v
retrieving revision 1.1
diff -u -r1.1 ICDIMemoryBlock.java
--- src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java 13 Aug 2002 00:12:44 -0000 1.1
+++ src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java 14 Aug 2002 14:59:06 -0000
@@ -10,7 +10,7 @@
 
 /**
  * 
- * A contiguos segment of memory in an execution context. A memory 
+ * A contiguous segment of memory in an execution context. A memory 
  * block is represented by a starting memory address and a length.
  * 
  * @since Jul 18, 2002
@@ -71,7 +71,7 @@
 	 */
 	void setValue( long offset, byte[] bytes ) throws CDIException;
 
-	boolean isFreezed();
+	boolean isFrozen();
 	
-	void setFreezed( boolean freezed );
+	void setFrozen( boolean frozen );
 }


Back to the top