Update docs for the wasm executor crate (#3569)

* Grammar.

* Update docs for wasm executor.

* Update core/executor/src/lib.rs

Co-Authored-By: André Silva <andre.beat@gmail.com>
This commit is contained in:
Sergei Pepyakin
2019-09-06 23:08:08 +02:00
committed by GitHub
parent 0fff0d28db
commit 4f7e36e072
5 changed files with 23 additions and 15 deletions
+2 -2
View File
@@ -226,10 +226,10 @@ pub trait Externalities<H: Hasher> {
/// Clear an entire child storage.
fn kill_child_storage(&mut self, storage_key: ChildStorageKey<H>);
/// Clear storage entries which keys are start with the given prefix.
/// Clear storage entries which keys start with the given prefix.
fn clear_prefix(&mut self, prefix: &[u8]);
/// Clear child storage entries which keys are start with the given prefix.
/// Clear child storage entries which keys start with the given prefix.
fn clear_child_prefix(&mut self, storage_key: ChildStorageKey<H>, prefix: &[u8]);
/// Set or clear a storage entry (`key`) of current contract being called (effective immediately).