diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-04-06 14:14:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-04-06 14:14:23 +0000 |
commit | 597d042ec254b4c6199e9a28e404ce48a7c0b6c8 (patch) | |
tree | ed5a58ecb1a234c7581b6bcb0165abc800bb9d5d /app | |
parent | 5e0d93b689b5635830ec82e2bb63cbb215a0b453 (diff) | |
download | redmine-597d042ec254b4c6199e9a28e404ce48a7c0b6c8.tar.gz redmine-597d042ec254b4c6199e9a28e404ce48a7c0b6c8.zip |
fix typos of source comments at Project model
git-svn-id: http://svn.redmine.org/redmine/trunk@13057 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/project.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 3bfe440ae..7f8dcb34a 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -502,7 +502,7 @@ class Project < ActiveRecord::Base assignable.select {|m| m.roles.detect {|role| role.assignable?}}.collect {|m| m.principal}.sort end - # Returns the mail adresses of users that should be always notified on project events + # Returns the mail addresses of users that should be always notified on project events def recipients notified_users.collect {|user| user.mail} end @@ -514,7 +514,7 @@ class Project < ActiveRecord::Base end # Returns a scope of all custom fields enabled for project issues - # (explictly associated custom fields and custom fields enabled for all projects) + # (explicitly associated custom fields and custom fields enabled for all projects) def all_issue_custom_fields @all_issue_custom_fields ||= IssueCustomField. sorted. |