typo(time.odin): "nanonseconds" -> "nanoseconds"

This commit is contained in:
Jx
2026-07-06 01:50:23 -03:00
committed by GitHub
parent 448dea1c22
commit 1279dd6501

View File

@@ -65,7 +65,7 @@ Capable of representing any time within the following range:
- `max: 2262-04-11 23:47:16.854775807 +0000 UTC`
*/
Time :: struct {
_nsec: i64, // Measured in UNIX nanonseconds
_nsec: i64, // Measured in UNIX nanoseconds
}
/*