#1252 - Extranious semi-colon

This commit is contained in:
Malcolm Jarvis 2008-09-03 03:58:18 +00:00
parent f69aa6faa6
commit ad04ad0d3d
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ Torrent.prototype =
// Create the 'progress details' label
// Eg: '698.05 MB, uploaded 8.59 GB (Ratio: 12.3)'
progress_details = Math.formatBytes( this._size )
+ ', uploaded ';
+ ', uploaded '
+ Math.formatBytes( this._upload_total )
+ ' (Ratio '
+ Math.ratio( this._upload_total, this._download_total )