Skip to content

Commit

Permalink
storage: clarify documentation about download integrity
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Dec 8, 2014
1 parent 82152ed commit 4f03ef7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/storage/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,10 @@ File.prototype.copy = function(destination, callback) {
* @param {object=} options - Configuration object.
* @param {string|boolean} options.validation - Possible values: `"md5"`,
* `"crc32c"`, or `false`. By default, data integrity is validated with an
* MD5 checksum for maximum reliability. CRC32c will provide better
* performance with less reliability. You may also choose to skip validation
* completely, however this is **not recommended**.
* MD5 checksum for maximum reliability, falling back to CRC32c when an MD5
* hash wasn't returned from the API. CRC32c will provide better performance
* with less reliability. You may also choose to skip validation completely,
* however this is **not recommended**.
*
* @example
* //-
Expand Down

0 comments on commit 4f03ef7

Please sign in to comment.