Skip to content

Commit

Permalink
Merge pull request #81 from striezel-stash/fix-typos
Browse files Browse the repository at this point in the history
fix some typos
  • Loading branch information
beanpuppy authored Jan 9, 2024
2 parents bfebc84 + f1a040b commit 93126cc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "2.2.11"
authors = ["Justin Duch <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Simple and (a)syncronous Reddit API wrapper"
description = "Simple and (a)synchronous Reddit API wrapper"
readme = "README.md"
documentation = "https://docs.rs/roux"
repository = "https://github.com/halcyonnouveau/roux"
Expand Down
2 changes: 1 addition & 1 deletion src/models/friend/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! # Inbox Reponses
//! # Inbox Responses
use serde::Deserialize;
/// The response from an add friend request
#[derive(Debug, Deserialize)]
Expand Down
2 changes: 1 addition & 1 deletion src/models/inbox/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! # Inbox Reponses
//! # Inbox Responses
use serde::Deserialize;

use crate::models::response::BasicListing;
Expand Down
2 changes: 1 addition & 1 deletion src/models/me/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl Me {
}

/// Get submissions by id
/// `ids`: the fullnames of submisions to get, comma seperated
/// `ids`: the fullnames of submisions to get, comma separated
#[maybe_async::maybe_async]
pub async fn get_submissions(&self, ids: &str) -> Result<Submissions, RouxError> {
let url = format!("/by_id/{ids}");
Expand Down
2 changes: 1 addition & 1 deletion src/models/submission/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub struct SubmissionData {
/// This is `Some(true)` if the logged-in user has upvoted this submission, `Some(false)` if
/// the user has downvoted this submission or `None` if the user has not voted.
pub likes: Option<bool>,
/// If a specifc sort method is suggested, this is set to the string name of it, otherwise
/// If a specific sort method is suggested, this is set to the string name of it, otherwise
/// it is `None`.
/// # Possible values
/// - top
Expand Down

0 comments on commit 93126cc

Please sign in to comment.