diff options
author | Felipe Artur <felipefac@gmail.com> | 2016-05-31 19:33:46 -0300 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2016-05-31 19:33:46 -0300 |
commit | 56f3b243ce08d105758a9b6edf96792627fa423c (patch) | |
tree | 6b8f0a2e47b5c3d43d34c2c2b25e1596ea7e501f /app/models/key.rb | |
parent | 30e61ed79c89de4c31a4d2057f710ad2b0704389 (diff) | |
download | gitlab-ce-56f3b243ce08d105758a9b6edf96792627fa423c.tar.gz |
Add leading comment space copissue_15557
Diffstat (limited to 'app/models/key.rb')
-rw-r--r-- | app/models/key.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/key.rb b/app/models/key.rb index d52afda67d1..0532e84f47d 100644 --- a/app/models/key.rb +++ b/app/models/key.rb @@ -26,7 +26,7 @@ class Key < ActiveRecord::Base end def publishable_key - #Removes anything beyond the keytype and key itself + # Removes anything beyond the keytype and key itself self.key.split[0..1].join(' ') end |