Merge pull request #1089 from kennyt/patch-1

Fix typo in Chunk.js
This commit is contained in:
Tobias Koppers 2015-05-21 08:54:05 +02:00
commit faa20a91e0
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ Chunk.prototype.canBeIntegrated = function(other) {
};
Chunk.prototype.integratedSize = function(other, options) {
// Chunk if it's possible to integrate this chunks
// Chunk if it's possible to integrate this chunk
if(!this.canBeIntegrated(other)) {
return false;
}