summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-21 07:33:03 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-21 07:33:03 +0000
commit27b9d591a52cbf4bf32ef0a0ee5700af9cf64fee (patch)
tree9f5829d562c47c0ba391a8a12ec455be7ee4b95d /gc.c
parent6bb471a2fba904c54857eed8c609b532f2b9caa0 (diff)
* gc.c: [DOC] Fix call-seq for GC.start by @jasonrclark [Fixes GH-572]
https://github.com/ruby/ruby/pull/572 [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gc.c b/gc.c
index 081d26adf7..81c62fbb20 100644
--- a/gc.c
+++ b/gc.c
@@ -5138,14 +5138,14 @@ Init_stack(volatile VALUE *addr)
* call-seq:
* GC.start -> nil
* GC.garbage_collect -> nil
- * ObjectSpace.garbage_collect -> nil
- * GC.start(full_mark: false) -> nil
+ * GC.start(full_mark: true, immediate_sweep: true) -> nil
+ * GC.garbage_collect(full_mark: true, immediate_sweep: true) -> nil
*
* Initiates garbage collection, unless manually disabled.
*
* This method is defined with keyword arguments that default to true:
*
- * def GC.start(full_mark: true, immediate_sweep: true) end
+ * def GC.start(full_mark: true, immediate_sweep: true); end
*
* Use full_mark: false to perform a minor GC.
* Use immediate_sweep: false to defer sweeping (use lazy sweep).