This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] gas/doc/as.texinfo: correct decimal integer example in documentation
- From: Chris Dituri <csdituri at gmail dot com>
- To: binutils at sourceware dot org
- Cc: Chris Dituri <csdituri at gmail dot com>
- Date: Sun, 2 Mar 2014 23:46:17 -0600
- Subject: [PATCH] gas/doc/as.texinfo: correct decimal integer example in documentation
- Authentication-results: sourceware.org; auth=none
When reading the gas documentation I noticed that the decimal integer
example contradicted its definition:
"A decimal integer starts with a non-zero digit [...]"
Regards,
Chris
---
gas/doc/as.texinfo | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo
index 739b5b9..d7db02b 100644
--- a/gas/doc/as.texinfo
+++ b/gas/doc/as.texinfo
@@ -2916,7 +2916,7 @@ digits (@samp{01234567}).
@cindex decimal integers
@cindex integers, decimal
A decimal integer starts with a non-zero digit followed by zero or
-more digits (@samp{0123456789}).
+more digits (@samp{1234567890}).
@cindex hexadecimal integers
@cindex integers, hexadecimal
--
1.8.4.1