From add16761307ca04c67ef5353722f4ccefb9e6877 Mon Sep 17 00:00:00 2001 From: Pyfisch Date: Sat, 3 Jun 2017 23:45:42 +0200 Subject: [PATCH] Fix typo in readme example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef2843d..9ae22f4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ along with experimental interpreter extern crate parity_wasm; -let module = parity-wasm::deserialize_file("./res/cases/v1/hello.wasm"); +let module = parity_wasm::deserialize_file("./res/cases/v1/hello.wasm"); assert_eq!(module.code_section().is_some()); let code_section = module.code_section().unwrap(); // Part of the module with functions code