summaryrefslogtreecommitdiffstats
path: root/doc/getOpenFile.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-08-20 10:56:35 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-08-20 10:56:35 (GMT)
commit8cf3e7964b95b65ef9cca59cda9e0f7430669fc2 (patch)
tree6ca1c6c3faf406bf711958fb205de6612cc00c4c /doc/getOpenFile.n
parent76b86596cb7edb28d4277ad60de37066b5cda319 (diff)
downloadtk-8cf3e7964b95b65ef9cca59cda9e0f7430669fc2.zip
tk-8cf3e7964b95b65ef9cca59cda9e0f7430669fc2.tar.gz
tk-8cf3e7964b95b65ef9cca59cda9e0f7430669fc2.tar.bz2
Spelling and grammar fixes from Mikhail Kolesnitchenko. [Patch 1012083]
Diffstat (limited to 'doc/getOpenFile.n')
-rw-r--r--doc/getOpenFile.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/getOpenFile.n b/doc/getOpenFile.n
index 09106a8..a049b0a 100644
--- a/doc/getOpenFile.n
+++ b/doc/getOpenFile.n
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: getOpenFile.n,v 1.11 2004/03/25 12:12:36 vincentdarley Exp $
+'\" RCS: @(#) $Id: getOpenFile.n,v 1.12 2004/08/20 10:56:36 dkf Exp $
'\"
.so man.macros
.TH tk_getOpenFile n 4.2 Tk "Tk Built-In Commands"
@@ -24,7 +24,7 @@ The procedures \fBtk_getOpenFile\fR and \fBtk_getSaveFile\fR pop up a
dialog box for the user to select a file to open or save. The
\fBtk_getOpenFile\fR command is usually associated with the \fBOpen\fR
command in the \fBFile\fR menu. Its purpose is for the user to select an
-existing file \fIonly\fR. If the user enters an non-existent file, the
+existing file \fIonly\fR. If the user enters a non-existent file, the
dialog box gives the user an error prompt and requires the user to give
an alternative selection. If an application allows the user to create
new files, it should do so by providing a separate \fBNew\fR menu command.
@@ -39,7 +39,7 @@ arguments to these two commands:
.TP
\fB\-defaultextension\fR \fIextension\fR
Specifies a string that will be appended to the filename if the user
-enters a filename without an extension. The defaut value is the empty
+enters a filename without an extension. The default value is the empty
string, which means no extension will be appended to the filename in
any case. This option is ignored on the Macintosh platform, which
does not require extensions to filenames,
@@ -144,7 +144,7 @@ card characters (* and ?).
Due to the different pattern matching rules on the various platforms,
to ensure portability, wild card characters are not allowed in the
extensions, except as in the special extension *. Extensions
-without a full stop character (e.g, ~) are allowed but may not
+without a full stop character (e.g. ~) are allowed but may not
work on all platforms.
.SH EXAMPLE