summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJemma Issroff <jemmaissroff@gmail.com>2023-08-22 10:17:56 -0700
committergit <svn-admin@ruby-lang.org>2023-08-22 18:04:59 +0000
commit9b373fb428872f6d17530b22ea40cc9083d17e18 (patch)
tree370661aa578eaab1ec7adb1817020486f35efc5f
parent7127f39bacbdc5dded044360f676e461ec124508 (diff)
[ruby/yarp] Fix small typo in templating to specify where template comes from
https://github.com/ruby/yarp/commit/96d69ceef6
-rwxr-xr-xyarp/templates/template.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/yarp/templates/template.rb b/yarp/templates/template.rb
index 75c337d7b8..8b8a175172 100755
--- a/yarp/templates/template.rb
+++ b/yarp/templates/template.rb
@@ -270,8 +270,8 @@ def template(name, locals, write_to: nil)
non_ruby_heading = <<~HEADING
/******************************************************************************/
- /* This file is generated by the bin/template script and should not be */
- /* modified manually. See */
+ /* This file is generated by the templates/template.rb script and should not */
+ /* be modified manually. See */
/* #{filepath + " " * (74 - filepath.size) } */
/* if you are looking to modify the */
/* template */
@@ -281,7 +281,7 @@ def template(name, locals, write_to: nil)
ruby_heading = <<~HEADING
# frozen_string_literal: true
=begin
- This file is generated by the bin/template script and should not be
+ This file is generated by the templates/template.rb script and should not be
modified manually. See #{filepath}
if you are looking to modify the template
=end