aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pl/tcl/pltcl_guide.nr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/pltcl_guide.nr b/src/pl/tcl/pltcl_guide.nr
index 87fcc71f747..6fcd155a403 100644
--- a/src/pl/tcl/pltcl_guide.nr
+++ b/src/pl/tcl/pltcl_guide.nr
@@ -121,12 +121,12 @@ from the CREATE FUNCTION section of the manual would be defined in Tcl as
.in +4
returns bool as '
.in +4
- if {200000.0 < $EMP(salary)} {
+ if {200000.0 < $1(salary)} {
.in +4
return 't'
.in -4
}
- if {$EMP(age) < 30 && 100000.0 < $EMP(salary)} {
+ if {$1(age) < 30 && 100000.0 < $1(salary)} {
.in +4
return 't'
.in -4