From 39802186b2135cce68882770aa36dc09ad6cb311 Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 4 Dec 2009 04:14:37 +0000 Subject: * ext/stringio/stringio.c (ungetc): RDoc updated. trunk allows pushing back behind the beginning of the pseudo stream. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ext/stringio/stringio.c') diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 802c462b56..f193c6ef6a 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -696,10 +696,9 @@ strio_extend(struct StringIO *ptr, long pos, long len) * strio.ungetc(string) -> nil * * Pushes back one character (passed as a parameter) onto *strio* - * such that a subsequent buffered read will return it. Pushing back - * behind the beginning of the buffer string is not possible. Nothing - * will be done if such an attempt is made. - * In other case, there is no limitation for multiple pushbacks. + * such that a subsequent buffered read will return it. There is no + * limitation for multiple pushbacks including pushing back behind the + * beginning of the buffer string. */ static VALUE strio_ungetc(VALUE self, VALUE c) -- cgit v1.2.3