1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 21:49:22 +01:00

Typo: "too many" rather than "to many"

This commit is contained in:
Tim Heaney 2015-10-05 22:46:03 -04:00
parent e0f81c1a9f
commit 57ad6d412d

View File

@ -356,7 +356,7 @@ eval $command ;# There is an error here, because there are too many arguments \
set replacement {Archibald Sorbisol} set replacement {Archibald Sorbisol}
set command {set name $replacement} set command {set name $replacement}
set command [subst $command] set command [subst $command]
eval $command ;# The same error as before: to many arguments to "set" in \ eval $command ;# The same error as before: too many arguments to "set" in \
{set name Archibald Sorbisol} {set name Archibald Sorbisol}