Skip to content

Commit

Permalink
doc(runtime-c-api) Improve documentation of wasmer_exports_t.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jan 20, 2020
1 parent ee424bb commit 97c25f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/runtime-c-api/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ pub struct wasmer_export_func_t;
/// exposed to C.
pub(crate) struct NamedExports(pub Vec<NamedExport>);

/// Opaque pointer to `NamedExports`.
/// Opaque pointer to the opaque structure `crate::NamedExports`,
/// which is a wrapper around a vector of the opaque structure
/// `crate::NamedExport`.
///
/// Check the `wasmer_instance_exports()` function to learn more.
#[repr(C)]
#[derive(Clone)]
pub struct wasmer_exports_t;
Expand Down

0 comments on commit 97c25f7

Please sign in to comment.