From 45b3c3ac39f7135b47c15224985a2a5fd3a086ee Mon Sep 17 00:00:00 2001 From: zzak Date: Tue, 16 Apr 2013 03:28:19 +0000 Subject: * ext/sdbm/init.c: Fix comment indentation, by windwiny [Fixes GH-277] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/sdbm/init.c | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'ext/sdbm/init.c') diff --git a/ext/sdbm/init.c b/ext/sdbm/init.c index 0fd837db31..4eee21573f 100644 --- a/ext/sdbm/init.c +++ b/ext/sdbm/init.c @@ -117,11 +117,11 @@ fsdbm_close(VALUE obj) } /* -* call-seq: -* sdbm.closed? -> true or false -* -* Returns +true+ if the database is closed. -*/ + * call-seq: + * sdbm.closed? -> true or false + * + * Returns +true+ if the database is closed. + */ static VALUE fsdbm_closed(VALUE obj) { @@ -142,20 +142,20 @@ fsdbm_alloc(VALUE klass) return Data_Wrap_Struct(klass, 0, free_sdbm, 0); } /* -* call-seq: -* SDBM.new(filename, mode = 0666) -* -* Creates a new database handle by opening the given +filename+. SDBM actually -* uses two physical files, with extensions '.dir' and '.pag'. These extensions -* will automatically be appended to the +filename+. -* -* If the file does not exist, a new file will be created using the given -* +mode+, unless +mode+ is explicitly set to nil. In the latter case, no -* database will be created. -* -* If the file exists, it will be opened in read/write mode. If this fails, it -* will be opened in read-only mode. -*/ + * call-seq: + * SDBM.new(filename, mode = 0666) + * + * Creates a new database handle by opening the given +filename+. SDBM actually + * uses two physical files, with extensions '.dir' and '.pag'. These extensions + * will automatically be appended to the +filename+. + * + * If the file does not exist, a new file will be created using the given + * +mode+, unless +mode+ is explicitly set to nil. In the latter case, no + * database will be created. + * + * If the file exists, it will be opened in read/write mode. If this fails, it + * will be opened in read-only mode. + */ static VALUE fsdbm_initialize(int argc, VALUE *argv, VALUE obj) { -- cgit v1.2.3