Skip to content

Commit 426a035

Browse files
committed
Fix example
1 parent 984da05 commit 426a035

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h4>Clone and read example:</h4>
7171
// Get the blob contents from the file.
7272
entry.getBlob().then(function(blob) {
7373
// Show the name, sha, and filesize in byes.
74-
console.log(entry.name() + entry.sha() + blob.size() + "b");
74+
console.log(entry.name + entry.sha + blob.size + "b");
7575

7676
// Show a spacer.
7777
console.log(Array(72).join("=") + "\n\n");

0 commit comments

Comments
 (0)