summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-02-08 09:23:56 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-02-08 09:23:56 (GMT)
commit98040fe8bcb5786e0e2743bc32dc10b576f86f93 (patch)
tree51c7bf9c2d087ad41b3bdfe67167b46770aa9601
parent3c8b0820ea8c617e68e7f455a5d62b237f16bb2c (diff)
downloadtcl-98040fe8bcb5786e0e2743bc32dc10b576f86f93.zip
tcl-98040fe8bcb5786e0e2743bc32dc10b576f86f93.tar.gz
tcl-98040fe8bcb5786e0e2743bc32dc10b576f86f93.tar.bz2
[3603804]: Improve example to actually be capable of throwing the trapped errors
-rw-r--r--doc/try.n2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/try.n b/doc/try.n
index 393fe5b..78a006d 100644
--- a/doc/try.n
+++ b/doc/try.n
@@ -87,7 +87,7 @@ Handle different reasons for a file to not be openable for reading:
.PP
.CS
\fBtry\fR {
- set f [open /some/file/name]
+ set f [open /some/file/name w]
} \fBtrap\fR {POSIX EISDIR} {} {
puts "failed to open /some/file/name: it's a directory"
} \fBtrap\fR {POSIX ENOENT} {} {