Skip to content

Commit

Permalink
Fix typing, and remove new line from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
shenjackyuanjie committed Mar 15, 2024
1 parent 18ed8f1 commit e380dab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ _2024.03.15_

## <a name="044">[0.4.4] - _Bump dependencies_ </a>


_2023.11.18_

- Bump tungstenite version to v0.20.1 (avoiding security vulnerability) [#368](https://github.com/1c3t3a/rust-socketio/pull/368)
Expand Down
6 changes: 3 additions & 3 deletions socketio/src/asynchronous/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ pub use client::client::Client;


#[doc = r#"
A macro to wrap a async callback function to be used in the client.
A macro to wrap an async callback function to be used in the client.
This macro is used to wrap a callback function that can handle any event.
This macro is used to wrap a callback function that can handle a specific event.
```rust
pub async fn callback(payload: Payload, client: Client) {}
Expand All @@ -30,7 +30,7 @@ macro_rules! async_callback {
}

#[doc = r#"
A macro to wrap a async callback function to be used in the client.
A macro to wrap an async callback function to be used in the client.
This macro is used to wrap a callback function that can handle any event.
Expand Down

0 comments on commit e380dab

Please sign in to comment.