summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/models/project.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index c5392d7b0..fd9d647bb 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -622,14 +622,14 @@ class Project < ActiveRecord::Base
end
end
- # Return the enabled module with the given name
- # or nil if the module is not enabled for the project
+ # Return the enabled module with the given name
+ # or nil if the module is not enabled for the project
def enabled_module(name)
name = name.to_s
enabled_modules.detect {|m| m.name == name}
end
- # Return true if the module with the given name is enabled
+ # Return true if the module with the given name is enabled
def module_enabled?(name)
enabled_module(name).present?
end