Update umka.html.markdown

Co-authored-by: Boris Verkhovskiy <boris.verk@gmail.com>
This commit is contained in:
Marek Maskarinec 2024-05-17 20:24:54 +02:00 committed by GitHub
parent c6d089b9dc
commit 0a0ae973fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -139,7 +139,7 @@ type Vector2 = struct {
x, y: real
}
fn newVector2(x, y: read): Vector2 {
fn newVector2(x, y: real): Vector2 {
// Structure literals
return Vector2{ x, y }
}