From 9b373fb428872f6d17530b22ea40cc9083d17e18 Mon Sep 17 00:00:00 2001 From: Jemma Issroff Date: Tue, 22 Aug 2023 10:17:56 -0700 Subject: [PATCH] [ruby/yarp] Fix small typo in templating to specify where template comes from https://github.com/ruby/yarp/commit/96d69ceef6 --- yarp/templates/template.rb | 6 +++--- 1 file 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