changeset 22257:3168715cb34d

Javadoc
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Sun, 27 Sep 2015 21:50:58 -0700
parents 75e5db92973a
children ff9d1426d744
files truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Probe.java truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Probe.java	Sun Sep 27 21:34:39 2015 -0700
+++ b/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Probe.java	Sun Sep 27 21:50:58 2015 -0700
@@ -49,7 +49,7 @@
  * <li>A dynamically managed collection of <em>attached</em> {@linkplain Instrument Instruments}
  * that receive event notifications on behalf of external clients.</li>
  * </ol>
- * <strong>Note</strong>:The relationship for {@link ProlbeInstrument} must be with an AST
+ * <strong>Note</strong>:The relationship for {@link ProbeInstrument} must be with an AST
  * <em>location</em>, not a specific {@link Node}, because ASTs are routinely <em>cloned</em> at
  * runtime. An AST <em>location</em> is best represented as the {@link SourceSection} from which the
  * original AST Node was created.
--- a/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java	Sun Sep 27 21:34:39 2015 -0700
+++ b/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java	Sun Sep 27 21:50:58 2015 -0700
@@ -79,7 +79,7 @@
      * Creates new root node. Each {@link RootNode} is associated with a particular language - if
      * the root node represents a method it is assumed the method is written in such language.
      * <p>
-     * <strong>Note:</strong> Although the {@link SourceSction} <em>can</em> be {@code null}, this
+     * <strong>Note:</strong> Although the {@link SourceSection} <em>can</em> be {@code null}, this
      * is strongly discouraged for the purposes of testing/tracing/tooling. Please use
      * {@link SourceSection#createUnavailable(String, String)} to create a descriptive instance with
      * a language-specific <em>kind</em> such as "SL Builtin" and a <em>name</em> if possible.
@@ -165,7 +165,7 @@
      * stack) without prior knowledge of the language it has come from.
      *
      * Used for instance to determine the language of a <code>RootNode<code>:
-     *
+     * 
      * <pre>
      * <code>
      * rootNode.getExecutionContext().getLanguageShortName();