doc(runtime-c-api) Improve documentation of wasmer_instance_context_t.

This commit is contained in:
Ivan Enderlin
2020-01-20 15:42:27 +01:00
parent cb632f3452
commit edf45049e1

View File

@ -33,7 +33,9 @@ pub struct wasmer_instance_t;
/// `wasmer_instance_context_memory()` function. /// `wasmer_instance_context_memory()` function.
/// ///
/// It is also possible to get the instance context outside a host /// It is also possible to get the instance context outside a host
/// function by using the `wasmer_instance_context_get()` function. /// function by using the `wasmer_instance_context_get()`
/// function. See also `wasmer_instance_context_data_set()` to set the
/// instance context data.
/// ///
/// Example: /// Example:
/// ///