Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2009-04-22 03:19:30 +0000
committernitind2009-04-22 03:19:30 +0000
commit12f7331103aefe0c68a0f4831ac05f798e9ad395 (patch)
tree3fa0007ef062efb209379ef9f1f5e5cbfbb5f9e8 /bundles/org.eclipse.wst.sse.core/src/org/eclipse
parent055aaa0c9d2b97ea8f3e5505bac5be872648103f (diff)
downloadwebtools.sourceediting-12f7331103aefe0c68a0f4831ac05f798e9ad395.tar.gz
webtools.sourceediting-12f7331103aefe0c68a0f4831ac05f798e9ad395.tar.xz
webtools.sourceediting-12f7331103aefe0c68a0f4831ac05f798e9ad395.zip
[nobug] fix typo
Diffstat (limited to 'bundles/org.eclipse.wst.sse.core/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/provisional/INodeNotifier.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/provisional/INodeNotifier.java b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/provisional/INodeNotifier.java
index 88d188847b..a76fe75b74 100644
--- a/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/provisional/INodeNotifier.java
+++ b/bundles/org.eclipse.wst.sse.core/src/org/eclipse/wst/sse/core/internal/provisional/INodeNotifier.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2001, 2005 IBM Corporation and others.
+ * Copyright (c) 2001, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -55,9 +55,9 @@ public interface INodeNotifier {
/**
- * NOT API: these strings are for printing, such as during debuging
+ * NOT API: these strings are for printing, such as during debugging
*/
- static final String[] EVENT_TYPE_STRINGS = new String[]{"undefined", "CHANGE", "ADD", "REMOVE", "STRUCUTRED_CHANGED", "CONTENT_CHANGED"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
+ static final String[] EVENT_TYPE_STRINGS = new String[]{"undefined", "CHANGE", "ADD", "REMOVE", "STRUCTURE_CHANGED", "CONTENT_CHANGED"}; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
/**

Back to the top