From 1279dd6501af87a795ad345d55988e49fccdf437 Mon Sep 17 00:00:00 2001 From: Jx <103049321+JxJxxJxJ@users.noreply.github.com> Date: Mon, 6 Jul 2026 01:50:23 -0300 Subject: [PATCH] typo(time.odin): "nanonseconds" -> "nanoseconds" --- core/time/time.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/time/time.odin b/core/time/time.odin index 438d74569..00549558e 100644 --- a/core/time/time.odin +++ b/core/time/time.odin @@ -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 } /*