File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/expression Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ public NodeCost getCost() {
123123 }
124124
125125 /**
126- * If expressions appear in a block of statements, they are wrapped in a
127- * {@link StatementNode} that simply drops the result.
126+ * If expressions appear in a block of statements, they are wrapped in a {@link StatementNode}
127+ * that simply drops the result.
128128 */
129129 public final StatementNode asStatement () {
130130 return new ExpressionStatementNode (this );
@@ -153,9 +153,8 @@ public boolean hasSideEffectAsAnExpression() {
153153 }
154154
155155 /**
156- * Some expressions can have hidden side-effects such as writing to a
157- * temporary variable. These can be wrapped together with their side
158- * effecting {@link StatementNode}.
156+ * Some expressions can have hidden side-effects such as writing to a temporary variable. These
157+ * can be wrapped together with their side effecting {@link StatementNode}.
159158 */
160159 public final ExpressionNode withSideEffect (StatementNode sideEffect ) {
161160 return new ExpressionWithSideEffects (this , sideEffect );
You can’t perform that action at this time.
0 commit comments