Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian de Alwis2016-01-05 20:30:38 +0000
committerBrian de Alwis2016-01-22 20:14:57 +0000
commit78e971706b608798380b3a7c950801c41cdb1ddc (patch)
treeb70b43e9cf1e14d88be2ca3567c002daf1744622 /org.eclipse.help
parent6c2d0d7467eb4dad909dbab2a8fe493d220e0e67 (diff)
downloadeclipse.platform.ua-78e971706b608798380b3a7c950801c41cdb1ddc.tar.gz
eclipse.platform.ua-78e971706b608798380b3a7c950801c41cdb1ddc.tar.xz
eclipse.platform.ua-78e971706b608798380b3a7c950801c41cdb1ddc.zip
Fix minor typos
Diffstat (limited to 'org.eclipse.help')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/HelpPlugin.java2
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/util/FastStack.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/HelpPlugin.java b/org.eclipse.help/src/org/eclipse/help/internal/HelpPlugin.java
index 1dce59d86..e60d3a342 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/HelpPlugin.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/HelpPlugin.java
@@ -87,7 +87,7 @@ public class HelpPlugin extends Plugin {
}
/**
- * Used to obtain Toc Naviagiont Manager
+ * Used to obtain Toc Navigation Manager
*
* @return instance of TocManager
*/
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/util/FastStack.java b/org.eclipse.help/src/org/eclipse/help/internal/util/FastStack.java
index 8bf39c8b8..d3830a3d9 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/util/FastStack.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/util/FastStack.java
@@ -13,9 +13,9 @@ package org.eclipse.help.internal.util;
import java.util.ArrayList;
/**
- * Fast Stack is similar to java.uiti.Stack, but simplified for speed. It uses
- * ArrayList as an underlying collection. The methods in this class are not
- * thread safe.
+ * Fast Stack is similar to {@link java.util.Stack}, but simplified for speed.
+ * It uses ArrayList as an underlying collection. The methods in this class are
+ * not thread safe.
*/
public class FastStack extends ArrayList {

Back to the top