mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
Run cargo fmt
This commit is contained in:
parent
db1c15f4e4
commit
62408d9202
1 changed files with 1 additions and 3 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue