summaryrefslogtreecommitdiff
path: root/prism/templates/lib/prism/dsl.rb.erb
diff options
context:
space:
mode:
Diffstat (limited to 'prism/templates/lib/prism/dsl.rb.erb')
-rw-r--r--prism/templates/lib/prism/dsl.rb.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/prism/templates/lib/prism/dsl.rb.erb b/prism/templates/lib/prism/dsl.rb.erb
index 8dbb540952..eff0d1c4fc 100644
--- a/prism/templates/lib/prism/dsl.rb.erb
+++ b/prism/templates/lib/prism/dsl.rb.erb
@@ -2,7 +2,7 @@ module Prism
# The DSL module provides a set of methods that can be used to create prism
# nodes in a more concise manner. For example, instead of writing:
#
- # source = Prism::Source.new("[1]")
+ # source = Prism::Source.for("[1]")
#
# Prism::ArrayNode.new(
# [
@@ -20,7 +20,7 @@ module Prism
#
# you could instead write:
#
- # source = Prism::Source.new("[1]")
+ # source = Prism::Source.for("[1]")
#
# ArrayNode(
# IntegerNode(Prism::IntegerBaseFlags::DECIMAL, 1, Location(source, 1, 1)), source),