diff options
author | Felipe Artur <felipefac@gmail.com> | 2019-02-14 16:37:12 -0200 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2019-02-14 16:37:12 -0200 |
commit | 7b79f6ab0d342e335609a7f3eb6cb691d1f03111 (patch) | |
tree | d7ba8d1df283bb8f1d422d4c5ebb5b8665e85695 /app | |
parent | 9671a67a4ce58683ca0188ff9e75b1d5dfcc5dec (diff) | |
download | gitlab-ce-7b79f6ab0d342e335609a7f3eb6cb691d1f03111.tar.gz |
fix typo
Diffstat (limited to 'app')
-rw-r--r-- | app/models/concerns/issuable_states.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/concerns/issuable_states.rb b/app/models/concerns/issuable_states.rb index 12fa97a1469..2ebd5013a4c 100644 --- a/app/models/concerns/issuable_states.rb +++ b/app/models/concerns/issuable_states.rb @@ -16,8 +16,8 @@ module IssuableStates # Needed to prevent breaking some migration specs that # rollback database to a point where state_id does not exist. - # We can use this guard clause for now since this file will should - # be removed in the next release. + # We can use this guard clause for now since this file will + # be removed on a future the next release. return unless self.respond_to?(:state_id) states_hash = self.class.available_states |