Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/codan
diff options
context:
space:
mode:
authorSergey Prigogin2011-07-20 19:32:49 +0000
committerSergey Prigogin2011-07-20 19:32:49 +0000
commit1f58e41046d468378788824551cfc849f9ef206e (patch)
treea8b82689c2fdccb4aace836baf09ca2396ca479d /codan
parentf60aad128c86e5294328a1384b95d7cda3202bcf (diff)
downloadorg.eclipse.cdt-1f58e41046d468378788824551cfc849f9ef206e.tar.gz
org.eclipse.cdt-1f58e41046d468378788824551cfc849f9ef206e.tar.xz
org.eclipse.cdt-1f58e41046d468378788824551cfc849f9ef206e.zip
Fixed javadoc.
Diffstat (limited to 'codan')
-rw-r--r--codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICodanDisposable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICodanDisposable.java b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICodanDisposable.java
index a175c058090..8a4683270c2 100644
--- a/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICodanDisposable.java
+++ b/codan/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICodanDisposable.java
@@ -25,8 +25,8 @@ package org.eclipse.cdt.codan.core.model;
*/
public interface ICodanDisposable {
/**
- * Disposes of the cache. This method has to be called exactly once during
- * the life cycle of the cache.
+ * Disposes of the object. This method has to be called exactly once during
+ * the life cycle of the object.
*/
public void dispose();
}

Back to the top