Skip to content
Open
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
8 changes: 4 additions & 4 deletions src/client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Handlers.add(
end

print(
intro .. rows .. "\nJoin a chat by running `Join(\"chatName\"[, \"yourNickname\"])`! You can leave chats with `Leave(\"name\")`.")
intro .. rows .. "\nJoin a chat by running `Join(\"chatName\", \"yourNickname\")`! You can leave chats with `Leave(\"name\")`.")
end
)

Expand All @@ -206,9 +206,9 @@ return(
"DevChat is a simple service that helps the ao community communicate as we build our new computer.\n" ..
"The interface is simple. Run...\n\n" ..
DevChat.Colors.green .. "\t\t`List()`" .. DevChat.Colors.reset .. " to see which rooms are available.\n" ..
DevChat.Colors.green .. "\t\t`Join(\"RoomName\")`" .. DevChat.Colors.reset .. " to join a room.\n" ..
DevChat.Colors.green .. "\t\t`Say(\"Msg\"[, \"RoomName\"])`" .. DevChat.Colors.reset .. " to post to a room (remembering your last choice for next time).\n" ..
DevChat.Colors.green .. "\t\t`Replay([\"Count\"])`" .. DevChat.Colors.reset .. " to reprint the most recent messages from a chat.\n" ..
DevChat.Colors.green .. "\t\t`Join(\"RoomName\", \"yourNickname\")`" .. DevChat.Colors.reset .. " to join a room.\n" ..
DevChat.Colors.green .. "\t\t`Say(\"Msg\", \"RoomName\")`" .. DevChat.Colors.reset .. " to post to a room (remembering your last choice for next time).\n" ..
DevChat.Colors.green .. "\t\t`Replay(\"Count\", \"RoomName\")`" .. DevChat.Colors.reset .. " to reprint the most recent messages from a chat.\n" ..
DevChat.Colors.green .. "\t\t`Leave(\"RoomName\")`" .. DevChat.Colors.reset .. " at any time to unsubscribe from a chat.\n" ..
DevChat.Colors.green .. "\t\t`Tip([\"Recipient\"])`" .. DevChat.Colors.reset .. " to send a token from the chatroom to the sender of the last message.\n\n" ..
"You have already been registered to the " .. DevChat.Colors.blue .. DevChat.Rooms[DevChat.InitRoom] .. DevChat.Colors.reset .. ".\n" ..
Expand Down