chore: update spelling mistakes (#1790)

* chore: update spelling mistakes

* chore: add spellignore

* chore: update sp mistakes
This commit is contained in:
Ridge Kimani
2025-09-04 07:02:03 +03:00
committed by GitHub
parent 19ecb18f0a
commit 08d8c6b674
21 changed files with 29 additions and 27 deletions

View File

@@ -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)