aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.1
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-04-28 22:03:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2021-04-28 22:03:40 +0300
commitd73e542791ccb18380cd836b8ea4a4a4b3535538 (patch)
tree3058fe7c80f472872291d9c311b4d492b058c280 /doc/gawk.1
parent92c5c36bc42aa1ccf6ccc8defc4f372b6de92111 (diff)
downloadegawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.tar.gz
egawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.tar.bz2
egawk-d73e542791ccb18380cd836b8ea4a4a4b3535538.zip
Make booleans just special numbers.
Diffstat (limited to 'doc/gawk.1')
-rw-r--r--doc/gawk.16
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawk.1 b/doc/gawk.1
index 86ddd7c7..e71ceba3 100644
--- a/doc/gawk.1
+++ b/doc/gawk.1
@@ -13,7 +13,7 @@
. if \w'\(rq' .ds rq "\(rq
. \}
.\}
-.TH GAWK 1 "Apr 6 2021" "Free Software Foundation" "Utility Commands"
+.TH GAWK 1 "Apr 28 2021" "Free Software Foundation" "Utility Commands"
.SH NAME
gawk \- pattern scanning and processing language
.SH SYNOPSIS
@@ -3488,8 +3488,8 @@ they work and why they exist.
Based on the boolean value of
.I expression
return either a true value or a false value.
-True values have numeric value one and string value \fB"TRUE"\fR.
-False values have numeric value zero and string value \fB"False"\fR.
+True values have numeric value one.
+False values have numeric value zero.
.SH USER-DEFINED FUNCTIONS
Functions in \*(AK are defined as follows:
.PP