From cf501539d073630f4db0ce09847670b0d905ea13 Mon Sep 17 00:00:00 2001 From: Alejo Rivera Date: Sat, 22 Aug 2015 23:39:19 -0500 Subject: [PATCH] Fix file extension error in Integrate RoR --- source/Integrate/Frameworks/rubyonrails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Integrate/Frameworks/rubyonrails.md b/source/Integrate/Frameworks/rubyonrails.md index 57c4cb88a0..13b0a9698d 100644 --- a/source/Integrate/Frameworks/rubyonrails.md +++ b/source/Integrate/Frameworks/rubyonrails.md @@ -37,7 +37,7 @@ class UserNotifier < ActionMailer::Base end {% endcodeblock %} -Now we need a view that corresponds to our action and outputs HTML for our email. Create a file app/views/Usernotifier/send_signup_email.erb as follows: +Now we need a view that corresponds to our action and outputs HTML for our email. Create a file app/views/Usernotifier/send_signup_email.html.erb as follows: {% codeblock lang:html %}