From ee79b89c24a6642a26d9695a26f9afaa3936219b Mon Sep 17 00:00:00 2001 From: dcode Date: Sat, 9 Oct 2021 19:45:24 +0200 Subject: [PATCH] README: high parameter in constructor is optional fixes #101 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd96ae6..f8d00ab 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ API ### Constructor -* new **Long**(low: `number`, high: `number`, unsigned?: `boolean`)
+* new **Long**(low: `number`, high?: `number`, unsigned?: `boolean`)
Constructs a 64 bit two's-complement integer, given its low and high 32 bit values as *signed* integers. See the from* functions below for more convenient ways of constructing Longs. ### Fields