summaryrefslogtreecommitdiffstats
path: root/sprintf.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-16 03:09:51 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-16 03:09:51 +0000
commit63cfc6ddb759c4c614f9fccaca11a47b8f091b70 (patch)
tree857ab2102956ce268a9a63216c11e4bc14a88821 /sprintf.c
parent3479ec2eed71bfad489b50e247e4190e0db691fc (diff)
downloadruby-63cfc6ddb759c4c614f9fccaca11a47b8f091b70.tar.gz
ruby-63cfc6ddb759c4c614f9fccaca11a47b8f091b70.tar.xz
ruby-63cfc6ddb759c4c614f9fccaca11a47b8f091b70.zip
* ext/syck/rubyext.c (syck_resolver_transfer): remove C++ style
comment (//). [ruby-core:05793] * lib/net/telnet.rb (Net::Telnet::waitfor): replace sysread with readpartial. [ruby-talk:127641] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sprintf.c b/sprintf.c
index 1633717cb..c4419259f 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -149,7 +149,7 @@ sign_bits(int base, const char *p)
*
* Flag | Applies to | Meaning
* ---------+--------------+-----------------------------------------
- * space | bdeEfgGioxXu | Leave a space at the start of
+ * space | bdeEfgGiouxX | Leave a space at the start of
* | | positive numbers.
* ---------+--------------+-----------------------------------------
* (digit)$ | all | Specifies the absolute argument number
@@ -165,11 +165,11 @@ sign_bits(int base, const char *p)
* | | point to be added, even if no digits follow.
* | | For `g' and 'G', do not remove trailing zeros.
* ---------+--------------+-----------------------------------------
- * + | bdeEfgGioxXu | Add a leading plus sign to positive numbers.
+ * + | bdeEfgGiouxX | Add a leading plus sign to positive numbers.
* ---------+--------------+-----------------------------------------
* - | all | Left-justify the result of this conversion.
* ---------+--------------+-----------------------------------------
- * 0 (zero) | all | Pad with zeros, not spaces.
+ * 0 (zero) | bdeEfgGiouxX | Pad with zeros, not spaces.
* ---------+--------------+-----------------------------------------
* * | all | Use the next argument as the field width.
* | | If negative, left-justify the result. If the