diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2017-05-21 01:18:35 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2017-05-21 01:18:35 -0700 |
commit | 1a826e86779561708cf2a3917dea44e370b16340 (patch) | |
tree | 704bb28407204c4c7a6073ede0cccd4c52cd390b | |
parent | Fix accidental plural in function. (diff) | |
download | backend-1a826e86779561708cf2a3917dea44e370b16340.tar.gz backend-1a826e86779561708cf2a3917dea44e370b16340.tar.bz2 backend-1a826e86779561708cf2a3917dea44e370b16340.zip |
More function name mismatch
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | lib/storage.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/storage.rb b/lib/storage.rb index eeb43da..daa1d1b 100644 --- a/lib/storage.rb +++ b/lib/storage.rb @@ -279,7 +279,7 @@ module Ag::Storage end def hide(list, id, comment) - hide_unhide(list, id, true, comment) + _hide_unhide(list, id, true, comment) end def unhide(list, id, comment) |