소스 검색

Remove excess whitespace and reformat comment

Michelle Bu 11 년 전
부모
커밋
e5a3db5f15
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      lib/dataconnection.js

+ 2 - 3
lib/dataconnection.js

@@ -118,10 +118,9 @@ DataConnection.prototype._handleDataMessage = function(e) {
     chunkInfo.count += 1;
 
     if (chunkInfo.total === chunkInfo.count) {
-      
-      // free up memory before making the recursive call to _handleDataMessage()
+      // Clean up before making the recursive call to `_handleDataMessage`.
       delete this._chunkedData[id];
-      
+
       // We've received all the chunks--time to construct the complete data.
       data = new Blob(chunkInfo.data);
       this._handleDataMessage({data: data});