summaryrefslogtreecommitdiffstats
path: root/lib/redmine/plugin.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-07 08:05:54 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-07 08:05:54 +0000
commit242b440073ced8d7cc2ff4706cda2e88b59e2b6f (patch)
tree174f15b24c697b6d83590c0371afc2d515eeb0d8 /lib/redmine/plugin.rb
parentbf776b33044a791f2b5bc65e39c6f25ad3d434ef (diff)
downloadredmine-242b440073ced8d7cc2ff4706cda2e88b59e2b6f.tar.gz
redmine-242b440073ced8d7cc2ff4706cda2e88b59e2b6f.zip
fix typos of source comments at lib/redmine/plugin.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@13069 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/plugin.rb')
-rw-r--r--lib/redmine/plugin.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/plugin.rb b/lib/redmine/plugin.rb
index f2800d211..e26ea91b9 100644
--- a/lib/redmine/plugin.rb
+++ b/lib/redmine/plugin.rb
@@ -331,7 +331,7 @@ module Redmine #:nodoc:
# Associated model(s) must implement the find_events class method.
# ActiveRecord models can use acts_as_activity_provider as a way to implement this class method.
#
- # The following call should return all the scrum events visible by current user that occured in the 5 last days:
+ # The following call should return all the scrum events visible by current user that occurred in the 5 last days:
# Meeting.find_events('scrums', User.current, 5.days.ago, Date.today)
# Meeting.find_events('scrums', User.current, 5.days.ago, Date.today, :project => foo) # events for project foo only
#