mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-12-19 06:58:15 +08:00
chore: update spelling mistakes (#1790)
* chore: update spelling mistakes * chore: add spellignore * chore: update sp mistakes
This commit is contained in:
@@ -13,7 +13,7 @@ function compare(a, b) {
|
||||
return 1
|
||||
}
|
||||
function orientation(a, b, c) {
|
||||
// Check orientation of Line(a,b) and Line(b,c)
|
||||
// Check orientation of Line(a, b) and Line(b, c)
|
||||
const alpha = (b.y - a.y) / (b.x - a.x)
|
||||
const beta = (c.y - b.y) / (c.x - b.x)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user