Skip to content

Commit 046489b

Browse files
committed
Updated README.
1 parent 6385ae0 commit 046489b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const sCharacter = newStruct()
2121
.build(); // total of 24 bytes
2222

2323
const sAccount = newStruct()
24-
/* 0 to 95 */ .array("characters", (b) => b.struct(4, sCharacter))
24+
/* 0 to 95 */ .array("characters", 4, (b) => b.struct(sCharacter))
2525
.build(); // total of 96 bytes
2626

2727
// now, lets create a new account
@@ -43,7 +43,3 @@ OUTPUT:
4343
(here I divided the output in 4 sections, just to show the 4 characters in the account)
4444
*/
4545
```
46-
47-
## Tests
48-
49-
Tests will be added upon the v1 release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typed-buffer-struct",
3-
"version": "0.1.1-dev.1",
3+
"version": "0.1.1-dev.2",
44
"description": "This is a package which helps the user to create a Struct with automatic Buffer creation.",
55
"author": {
66
"name": "Nelson Faiçal Rechdan",

0 commit comments

Comments
 (0)