Skip to content

Commit

Permalink
doc(readme) Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed May 13, 2019
1 parent 1f8fac4 commit 858b79b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -85,7 +85,7 @@ from wasmer import Instance
# Get the Wasm module as bytes.
wasm_bytes = open('my_program.wasm', 'rb').read()

# Instantiates the Wasm module.
# Instantiate the Wasm module.
instance = Instance(wasm_bytes)

# Call a function on it.
Expand Down Expand Up @@ -193,7 +193,7 @@ from wasmer import Instance
# Get the Wasm module as bytes.
wasm_bytes = open('my_program.wasm', 'rb').read()

# Instantiates the Wasm module.
# Instantiate the Wasm module.
instance = Instance(wasm_bytes)

# Call a function that returns a pointer to a string for instance.
Expand Down

0 comments on commit 858b79b

Please sign in to comment.