Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some typos #46

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/chan/ws_manager_chan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ pub enum WsMessage {
},
/// The user account was updated.
///
/// This might me especially useful for reflecting changes in the username, etc. in the
/// This might be especially useful for reflecting changes in the username, etc. in the
/// frontend
AccountUpdated {
/// The new account data
Expand Down
4 changes: 2 additions & 2 deletions src/server/handler/lobbies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub struct GetLobbyResponse {
chat_room_uuid: Uuid,
}

/// Retrieves an open lobbies.
/// Retrieves an open lobby
///
/// If `password` is `true`, the lobby is secured by a user-set password
#[utoipa::path(
Expand Down Expand Up @@ -946,7 +946,7 @@ pub struct PlayerKickPath {
///
/// This endpoint can only be used by the lobby owner.
///
/// All players in the lobby as well as the kick player will receive a [WsMessage::LobbyKick]
/// All players in the lobby as well as the kicked player will receive a [WsMessage::LobbyKick]
/// message via websocket on success.
#[utoipa::path(
tag = "Lobbies",
Expand Down