# HG changeset patch # User Michael Van De Vanter # Date 1443415858 25200 # Node ID 3168715cb34d99ee2f8b14f81dd0915848ad562b # Parent 75e5db92973a81c26c659e1722a501ae8b16cdb2 Javadoc diff -r 75e5db92973a -r 3168715cb34d truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Probe.java --- 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 @@ *
  • A dynamically managed collection of attached {@linkplain Instrument Instruments} * that receive event notifications on behalf of external clients.
  • * - * Note:The relationship for {@link ProlbeInstrument} must be with an AST + * Note:The relationship for {@link ProbeInstrument} must be with an AST * location, not a specific {@link Node}, because ASTs are routinely cloned at * runtime. An AST location is best represented as the {@link SourceSection} from which the * original AST Node was created. diff -r 75e5db92973a -r 3168715cb34d truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java --- 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. *

    - * Note: Although the {@link SourceSction} can be {@code null}, this + * Note: Although the {@link SourceSection} can 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 kind such as "SL Builtin" and a name 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 RootNode: - * + * *

          * 
          * rootNode.getExecutionContext().getLanguageShortName();