Skip to content

Commit

Permalink
Merge pull request #227 from Jonny-Ringo/patch-5
Browse files Browse the repository at this point in the history
Fix "Registered" Capitalization
  • Loading branch information
twilson63 authored Sep 16, 2024
2 parents eda7280 + bcb2369 commit d6f7b34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tutorials/begin/chatroom.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ The register handler will allow processes to join the chatroom.
{ Action = "Register"},
function (msg)
table.insert(Members, msg.From)
print(msg.From .. " registered")
msg.reply({ Data = "registered." })
print(msg.From .. " Registered")
msg.reply({ Data = "Registered." })
end
)
```
Expand Down

0 comments on commit d6f7b34

Please sign in to comment.