From 340ca08e6cbf22c842ae9011af381ad581398131 Mon Sep 17 00:00:00 2001 From: Richard Anaya Date: Fri, 6 Nov 2020 12:48:11 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 625918a..5706bc0 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ In your JS function context `this` contains several functions handle most issues * `writeUtf8ToMemory(start,str)` - Write utf-8 to a memory location you are sure it should go. * `readCStringFromMemory(start,length)` - Extract C string text from your program's memory. * `writeCStringToMemory(start,str)` - Write C string to a memory location you are sure it should go. -* `readUint8ArrayFromMemory` - Read a list of uint8 from a pointer to a location of a number of elements, followed by a pointer to bytes in memory. +* `readUint8ArrayFromMemory(start)` - Read a list of uint8 from a pointer to a location of a number of elements, followed by a pointer to bytes in memory. * `storeObject(object)` - Store an object in your context for later reference, get a handle you can give to WebAssembly. * `getObject(handle)` - Retreive and object from your context with a handle. * `releaseObject(handle)` - Release a stored object so it's memory can be freed.