From 5f819fdbb358fa38f1b88ee759aed105add019ce Mon Sep 17 00:00:00 2001 From: "igor%mir2.org" Date: Sat, 14 Aug 2004 15:08:32 +0000 Subject: [PATCH] Fixing JavaDoc --- js/rhino/src/org/mozilla/javascript/ContextFactory.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/rhino/src/org/mozilla/javascript/ContextFactory.java b/js/rhino/src/org/mozilla/javascript/ContextFactory.java index 165d39d06db6..550ed27e46d6 100644 --- a/js/rhino/src/org/mozilla/javascript/ContextFactory.java +++ b/js/rhino/src/org/mozilla/javascript/ContextFactory.java @@ -45,9 +45,9 @@ package org.mozilla.javascript; * instances or to notify about Context execution. *

* When Rhino runtime needs to create new {@link Context} instance during - * execution of {@link Context.enter()} or {@link Context}, it will call + * execution of {@link Context#enter()} or {@link Context}, it will call * {@link #makeContext()} of the current global ContextFactory. - * See {@lnk #getGlobal()} and {@link #initGlobal(ContextFactory)}. + * See {@link #getGlobal()} and {@link #initGlobal(ContextFactory)}. *

* It is also possible to use explicit ContextFactory instances for Context * creation. This is useful to have a set of independent Rhino runtime @@ -83,7 +83,7 @@ package org.mozilla.javascript; * { * private long creationTime = System.currentTimeMillis(); * - * // Override {@Context#observeInstructionCount(int)} + * // Override {@link Context#observeInstructionCount(int)} * protected void observeInstructionCount(int instructionCount) * { * long currentTime = System.currentTimeMillis(); @@ -96,7 +96,7 @@ package org.mozilla.javascript; * } * } * - * // Override {@Context#hasFeature(int)} + * // Override {@link Context#hasFeature(int)} * public boolean hasFeature(int featureIndex) * { * // Turn on maximim compatibility with MSIE scripts