From: Ben Pfaff Date: Thu, 10 Jan 2013 05:52:37 +0000 (-0800) Subject: doc: Better describe the meaning of THRU in the RECODE command. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf334edc03b5898ad364c98dfe22dcf8a634f671;p=pspp doc: Better describe the meaning of THRU in the RECODE command. pohaku reported that the description was ambiguous. --- diff --git a/doc/transformation.texi b/doc/transformation.texi index 63f85e9ee9..5ea809e54f 100644 --- a/doc/transformation.texi +++ b/doc/transformation.texi @@ -528,11 +528,9 @@ If the source variables are string variables then @var{src_value} may be a literal string (like all strings, enclosed in single or double quotes). @item @var{num1} THRU @var{num2} This form is valid only when the source variables are numeric. -It specifies all values in the range [@var{num1}, @var{num2}]. -Normally you would ensure that @var{num2} is greater than or equal to -@var{num1}. -If @var{num1} however is greater than @var{num2}, then the range -[@var{num2},@var{num1}] will be used instead. +It specifies all values in the range between @var{num1} and @var{num2}, +including both endpoints of the range. By convention, @var{num1} +should be less than @var{num2}. Open-ended ranges may be specified using @samp{LO} or @samp{LOWEST} for @var{num1} or @samp{HI} or @samp{HIGHEST} for @var{num2}.