1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 23:10:28 -08:00

(else): Rephrase message of first if-then-else example so it is right

both in itself and in the "true" case of the expression, which asks
whether 4 is greater than 5.
This commit is contained in:
Robert J. Chassell 2007-01-30 12:57:11 +00:00
parent 4799aa91aa
commit 482d6bf5d0
2 changed files with 10 additions and 3 deletions

View file

@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way:
@smallexample
@group
(if (> 4 5) ; @r{if-part}
(message "5 is greater than 4!") ; @r{then-part}
(message "4 is not greater than 5!")) ; @r{else-part}
(if (> 4 5) ; @r{if-part}
(message "4 falsely greater than 5!") ; @r{then-part}
(message "4 is not greater than 5!")) ; @r{else-part}
@end group
@end smallexample