From f703c615ae49267fd63967d7e49bc41817f486d8 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Tue, 25 Aug 2026 09:07:46 +0200 Subject: [PATCH] Fix extra doc docmment https://github.com/ruby/prism/commit/9df2a21995764880c6d27213e2c7960f2232c879 changed the comment style Now rdoc picks this up. The comment doesn't say much, seems fine to just remove --- ext/prism/extension.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/prism/extension.c b/ext/prism/extension.c index 2e3992474a..7a5250f0d5 100644 --- a/ext/prism/extension.c +++ b/ext/prism/extension.c @@ -1606,8 +1606,6 @@ Init_prism(void) { rb_ext_ractor_safe(true); #endif - /* Grab up references to all of the constants that we are going to need to - * reference throughout this extension. */ rb_cPrism = rb_define_module("Prism"); rb_cPrismNode = rb_define_class_under(rb_cPrism, "Node", rb_cObject); rb_cPrismSource = rb_define_class_under(rb_cPrism, "Source", rb_cObject);