diff options
author | Daniel Danner <daniel@danner.de> | 2019-07-13 13:29:47 +0000 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-07-13 13:29:47 +0000 |
commit | 0b2ccbcc52af0023a6f2799c79a59599952393d2 (patch) | |
tree | eab8a2f67aecc026ab58435e93a52fffe3acbd5c /app/models | |
parent | 6005208e39bb0d7dcca3101ea9daa09d62c6c656 (diff) | |
download | gitlab-ce-0b2ccbcc52af0023a6f2799c79a59599952393d2.tar.gz |
Fix typo "beetween" in timeout validation message
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 2a29cb1ae09..f6f7d373f91 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -432,7 +432,7 @@ class Project < ApplicationRecord numericality: { greater_than_or_equal_to: 10.minutes, less_than: 1.month, only_integer: true, - message: _('needs to be beetween 10 minutes and 1 month') } + message: _('needs to be between 10 minutes and 1 month') } # Used by Projects::CleanupService to hold a map of rewritten object IDs mount_uploader :bfg_object_map, AttachmentUploader |