Skip to content

Commit

Permalink
doc: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kitgxrl committed Apr 29, 2024
1 parent f410d7c commit f27bdbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion socketio/src/asynchronous/client/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl Client {
.expect("Client::data does not match ClientBuilder::data")
}

/// Attempts to fetches data given by [`ClientBuilder::data`]
/// Attempts to fetch data given by [`ClientBuilder::data`]
///
/// None is returned if data was not given or data does not match [`ClientBuilder::data`]
pub fn try_data<D: Send + Sync + 'static>(&self) -> Option<Arc<D>> {
Expand Down
2 changes: 1 addition & 1 deletion socketio/src/client/raw_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl RawClient {
.expect("RawClient::data does not match ClientBuilder::data")
}

/// Attempts to fetches data given by [`ClientBuilder::data`]
/// Attempts to fetch data given by [`ClientBuilder::data`]
///
/// None is returned if data was not given or data does not match [`ClientBuilder::data`]
pub fn try_data<D: Send + Sync + 'static>(&self) -> Option<Arc<D>> {
Expand Down

0 comments on commit f27bdbf

Please sign in to comment.