diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/api/plugin/uiPluginAPI.html b/rse/doc/org.eclipse.rse.doc.isv/guide/api/plugin/uiPluginAPI.html
index e79d1cb0d8c..7c9bba5a63f 100755
--- a/rse/doc/org.eclipse.rse.doc.isv/guide/api/plugin/uiPluginAPI.html
+++ b/rse/doc/org.eclipse.rse.doc.isv/guide/api/plugin/uiPluginAPI.html
@@ -56,7 +56,7 @@ to load each of your images.
getWorkspaceRoot(). Return the root of the workspace.
getWorkspace(). Return the workspace root.
getInstallLocation(). Return the install directory for this plugin.
-getIconPath(). Return the typical path for icons, relative to the plugin's folder: "icons"
+getIconPath(). Return the typical path for icons, relative to the plugin's folder: "icons/"
putImageInRegistry(String id, String fileName). Load an image in the image registry, given the ID to retrieve it with, and its filename and path relative to this plugin's folder
getImage(String id). Return an Image given the ID with which it was registered in putImageInRegistry.
getImageDescriptor(String id). Return an ImageDescriptor given the ID with which it was registered in putImageInRegistry.
diff --git a/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/InitializeImageRegistry.html b/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/InitializeImageRegistry.html
index d8b5b27bd40..2d618b753d6 100755
--- a/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/InitializeImageRegistry.html
+++ b/rse/doc/org.eclipse.rse.doc.isv/guide/tutorial/InitializeImageRegistry.html
@@ -18,9 +18,8 @@
protected void initializeImageRegistry()
{
String path = getIconPath();
- putImageInRegistry("ICON_ID_TEAM", path+"team.gif");
- putImageInRegistry("ICON_ID_DEVELOPER", path+"developer.gif");
- // TO RETRIEVE AN ICON, CALL GETIMAGE OR GETIMAGEDESCRIPTOR WITH ITS XXX_ID ID
+ putImageInRegistry("ICON_ID_TEAM", path + "team.gif");
+ putImageInRegistry("ICON_ID_DEVELOPER", path + "developer.gif");
}