Skip to content

Commit

Permalink
The error is "variable is array", not "variable is an array".
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@8464 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
mdiep committed Jun 27, 2005
1 parent c6a1226 commit 761fc60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion languages/tcl/lib/variables.pir
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ cant_read_array:
return_type = TCL_ERROR
$S0 = "can't read \""
$S0 .= name
$S0 .= "\": variable is an array"
$S0 .= "\": variable is array"
variable = new String
variable = $S0
goto done
Expand Down
2 changes: 1 addition & 1 deletion languages/tcl/t/tcl_var_subst.t
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ language_output_is("tcl",<<'TCL',<<OUT,"array as scalar");
set a(b) 2
puts $a
TCL
can't read \"a\": variable is an array
can't read \"a\": variable is array
OUT
language_output_is("tcl",<<'TCL',<<'OUT','${} substitute an array');
Expand Down

0 comments on commit 761fc60

Please sign in to comment.