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

fix spelling errors/etc. in comments #1730

Merged
merged 3 commits into from
Jan 23, 2025
Merged
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ There is a very clear/obvious difference between unavoidably complex code and in

## Q: Is there a style guide for writing code?

**A:** Not really, but we would normally try to follow the format of the other existing code in the module we are editing, as well as the [Roblox Lua Style Guide](https://roblox.github.io/lua-style-guide/) where applicable. Also, be sure to use US English spellings for both code variable names and user-facing text.
**A:** Not really, but we would normally try to follow the format of the other existing code in the module we are editing, as well as the [Roblox Luau Style Guide](https://roblox.github.io/lua-style-guide/) where applicable. Also, be sure to use US English spellings for both code variable names and user-facing text.

## Q: What are some things I should watch out for when submitting my changes?

Expand Down
2 changes: 1 addition & 1 deletion Loader/Config/API.luau
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--[[
If you're learning how to create in Adonis, the wiki may be of help.
The wiki contains informationa about the Adonis API and how to use it;
The wiki contains information about the Adonis API and how to use it;
as well as information about settings and how to use Adonis.

It can be viewed here:
Expand Down
2 changes: 1 addition & 1 deletion Loader/Config/Settings.luau
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ local descs = {}; --// Contains settings descriptions

Numbers do not use quotes. setting = 56

This green block of text you are reading is called a comment. It's like a message
This block of text you are reading is called a comment. It's like a message
from the programmer to anyone who reads their stuff. Anything in a comment will
not be seen by Luau when the script is run.

Expand Down
2 changes: 1 addition & 1 deletion MainModule/Server/Dependencies/DefaultSettings.luau
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ local descs = {}; --// Contains settings descriptions

Numbers do not use quotes. setting = 56

This green block of text you are reading is called a comment. It's like a message
This block of text you are reading is called a comment. It's like a message
from the programmer to anyone who reads their stuff. Anything in a comment will
not be seen by Luau when the script is run.

Expand Down
Loading