Skip to content

Commit 245aa6d

Browse files
committedJan 20, 2017
Fixing alignment of the example in README
1 parent de2e388 commit 245aa6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ filesize(265318); // "259.1 KB"
4848
filesize(265318, {round: 0}); // "259 KB"
4949
filesize(265318, {output: "array"}); // [259.1, "KB"]
5050
filesize(265318, {output: "object"}); // {value: 259.1, suffix: "KB", symbol: "KB"}
51-
filesize(1, {symbols: {B: "Б"}}); // "1 Б"
51+
filesize(1, {symbols: {B: "Б"}}); // "1 Б"
5252
filesize(1024); // "1 KB"
5353
filesize(1024, {exponent: 0}); // "1024 B"
5454
filesize(1024, {output: "exponent"}); // 1

0 commit comments

Comments
 (0)
Please sign in to comment.