Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed mutate_component documentation #482

Merged
merged 1 commit into from
Jun 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed invalid documentation
  • Loading branch information
aldzban committed Jun 3, 2023
commit cdb9bd745220e5e5b6ca2fcd1a4bd4123d389f55
4 changes: 2 additions & 2 deletions guest/rust/api_core/src/entity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ pub fn remove_components(entity: EntityId, components: &[&dyn UntypedComponent])
wit::component::remove_components(entity.into_bindgen(), &components)
}

/// Mutates the component `name` for `entity` using the passed in `mutator`, and returns its value.
/// Mutates the component `component` for `entity` using the passed in `mutator`, and returns its value.
///
/// This will not set the component if the value is the same, which will prevent change events from
/// being unnecessarily fired.
Expand All @@ -205,7 +205,7 @@ pub fn mutate_component<T: SupportedValue + SupportedValue + Clone + PartialEq>(
Some(value)
}

/// Mutates the component `name` for `entity` using the passed in `mutator`, or sets it
/// Mutates the component `component` for `entity` using the passed in `mutator`, or sets it
/// to `default` if it doesn't exist, and returns its value.
///
/// This will not set the component if the value is the same, which will prevent change events from
Expand Down