Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleitnick committed Nov 29, 2021
1 parent fd9dd00 commit a2c312c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/pid/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
--[=[
@class PID
The PID class simulates a [PID controller](https://en.wikipedia.org/wiki/PID_controller). PID is an acronym
for _proportional, intergral, derivative_. PIDs are input feedback loops that try to reach a specific
for _proportional, integral, derivative_. PIDs are input feedback loops that try to reach a specific
goal by measuring the difference between the input and the desired value, and then returning a new
desired input.
Expand All @@ -30,7 +30,7 @@ PID.__index = PID
- `false`: The PID applies the proportional calculation on the _measurement_.
Setting this value to `false` may help the PID move smoother and help
elimiate overshoot.
eliminate overshoot.
```lua
local pid = PID.new(...)
Expand Down
4 changes: 2 additions & 2 deletions modules/signal/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
-- sig:DisconnectAll() --
-- local arg1, arg2, ... = sig:Wait() --
-- --
-- Licence: --
-- Licenced under the MIT licence. --
-- License: --
-- Licensed under the MIT license. --
-- --
-- Authors: --
-- stravant - July 31st, 2021 - Created the file. --
Expand Down

0 comments on commit a2c312c

Please sign in to comment.