Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d7345b7

Browse files
committedMay 10, 2023
fix: readme
1 parent d4395d7 commit d7345b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ You can find a working implementation of this process in the [__Example App__](e
108108

109109
Currently, `wasm3` [__only supports a single memory region__](https://github.com/wasm3/wasm3/blob/772f8f4648fcba75f77f894a6050db121e7651a2/source/wasm3.h#L214). This means that WebAssembly files which contain multiple `memory` allocations are not currently supported.
110110

111-
[`react-native-webassembly`](https://github.com/cawfree/react-native-webassembly) exposes access to the runtime memory element for allocated instances, which is represented using an `ArrayBuffer` named `memory`. This shares the same backing array as the native runtime. It can accessed as follows:
111+
[`react-native-webassembly`](https://github.com/cawfree/react-native-webassembly) exposes access to the runtime memory element for allocated instances, which is represented using an `ArrayBuffer` named `memory`. This shares the same backing array as the native runtime.
112+
113+
It can accessed as follows:
112114

113115
```typescript
114116
const module = WebAssembly.instantiate(...);

0 commit comments

Comments
 (0)
Please sign in to comment.