Run cargo fmt

This commit is contained in:
benwis 2024-08-13 17:10:58 -07:00
parent db1c15f4e4
commit 62408d9202

View file

@ -181,8 +181,6 @@ pub fn create_signal<T: Send + Sync + 'static>(
#[track_caller]
#[deprecated = "This function is being removed to conform to Rust idioms. \
Please use `RwSignal::new()` instead."]
pub fn create_rw_signal<T: Send + Sync + 'static>(
value: T,
) -> RwSignal<T> {
pub fn create_rw_signal<T: Send + Sync + 'static>(value: T) -> RwSignal<T> {
RwSignal::new(value)
}