From deda156c8c0fd4e8f7439868ac2c7def432e8b6f Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Tue, 23 Jan 2018 10:53:48 +0200 Subject: [PATCH] Fix spelling Instead of "it's", we should be using "its". --- lib/volt/page/targets/base_section.rb | 2 +- lib/volt/page/targets/dom_template.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/volt/page/targets/base_section.rb b/lib/volt/page/targets/base_section.rb index c04980ea..51702b3b 100644 --- a/lib/volt/page/targets/base_section.rb +++ b/lib/volt/page/targets/base_section.rb @@ -34,7 +34,7 @@ def set_content_to_template(volt_app, template_name) html = template['html'] bindings = template['bindings'] else - html = "
-- < missing view or tag at #{template_name.inspect}, make sure it's component is included in dependencies.rb > --
" + html = "
-- < missing view or tag at #{template_name.inspect}, make sure its component is included in dependencies.rb > --
" bindings = {} end diff --git a/lib/volt/page/targets/dom_template.rb b/lib/volt/page/targets/dom_template.rb index ba6bb138..e8c302e4 100644 --- a/lib/volt/page/targets/dom_template.rb +++ b/lib/volt/page/targets/dom_template.rb @@ -16,7 +16,7 @@ def initialize(volt_app, template_name) html = template['html'] @bindings = template['bindings'] else - html = "
-- < missing view or tag at #{template_name.inspect}, make sure it's component is included in dependencies.rb > --
" + html = "
-- < missing view or tag at #{template_name.inspect}, make sure its component is included in dependencies.rb > --
" @bindings = {} end