Skip to content

Commit 9572411

Browse files
committed
fix package description
1 parent d76be20 commit 9572411

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

RubyScript/src/org/knime/ext/jruby/package.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
<code>
2727
count = $inData0.length
2828
$inData0.each_with_index do |row,i|
29-
$outContainer << row.string('Hi!').int(row.getCell(0).to_s.length).append
29+
$outContainer << Cells.new.string('Hi!').int(row[0].to_s.length)
3030
setProgress "#{i*100/count}%" if i%100 != 0
3131
end
3232
</code>
3333

3434
<p>
35-
The <code>RubyScriptModel</code> cannot predefined columns.
35+
The <code>RubyScriptModel</code> allows to use existing and add new columns.
3636
<p>
3737
The <code>RubyScriptDialog</code> allows loading and editing of Ruby script.
3838
<p>

0 commit comments

Comments
 (0)