diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-16 03:04:59 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-16 03:04:59 +0000 |
| commit | cef9f4afffe117e3e1ecb243f52bbcee5a4b91c2 (patch) | |
| tree | 955bc1a3de2605a93ff21a743f13ba5eac9af877 /sprintf.c | |
| parent | 14c89ed31af6c0b9e80059cd56e8a484480222c6 (diff) | |
| download | ruby-cef9f4afffe117e3e1ecb243f52bbcee5a4b91c2.tar.gz ruby-cef9f4afffe117e3e1ecb243f52bbcee5a4b91c2.tar.xz ruby-cef9f4afffe117e3e1ecb243f52bbcee5a4b91c2.zip | |
* ext/syck/rubyext.c (syck_resolver_transfer): remove C++ style
comment (//). [ruby-core:05793]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sprintf.c')
| -rw-r--r-- | sprintf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -146,7 +146,7 @@ sign_bits(base, 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 @@ -162,11 +162,11 @@ sign_bits(base, 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 |
