Module: deluge Branch: 1.3-stable Commit: 8b58c960f3f332cb4fc39a3a23d9fb73d0728866
Author: Damien Churchill <[email protected]> Date: Sat Jun 12 22:47:59 2010 +0100 fix typo --- deluge/ui/web/js/deluge-all/Formatters.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/ui/web/js/deluge-all/Formatters.js b/deluge/ui/web/js/deluge-all/Formatters.js index face943..9029224 100644 --- a/deluge/ui/web/js/deluge-all/Formatters.js +++ b/deluge/ui/web/js/deluge-all/Formatters.js @@ -89,7 +89,7 @@ Deluge.Formatters = { * @return {String} formatted string with KiB, MiB or GiB units. */ speed: function(bytes, showZero) { - return (!bytess && !showZero) ? '' : fsize(bytes, showZero) + '/s'; + return (!bytes && !showZero) ? '' : fsize(bytes, showZero) + '/s'; }, /** -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
