Commit 69ba86e8871c6d3ad118d0162b64f648d33c281a

Authored by James Earl Douglas
1 parent 89d3366e

fix typo: 'avaialble' -> 'available'

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/controllers/admin/mailer_controller.rb
... ... @@ -22,7 +22,7 @@ class Admin::MailerController < ApplicationController
22 22 render :file => 'notify/note_wall_email', :layout => 'notify'
23 23 end
24 24 rescue
25   - render :text => "Preview not avaialble"
  25 + render :text => "Preview not available"
26 26 end
27 27  
28 28 def preview_user_new
... ... @@ -31,7 +31,7 @@ class Admin::MailerController < ApplicationController
31 31  
32 32 render :file => 'notify/new_user_email', :layout => 'notify'
33 33 rescue
34   - render :text => "Preview not avaialble"
  34 + render :text => "Preview not available"
35 35 end
36 36  
37 37 def preview_issue_new
... ... @@ -40,6 +40,6 @@ class Admin::MailerController < ApplicationController
40 40 @project = @issue.project
41 41 render :file => 'notify/new_issue_email', :layout => 'notify'
42 42 rescue
43   - render :text => "Preview not avaialble"
  43 + render :text => "Preview not available"
44 44 end
45 45 end
... ...