From 1a93dfd28f8e256c164d67985866f0aab3659d44 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 17 Jun 2024 13:24:47 -0400 Subject: [PATCH] Fix indentation --- core/unicode/letter.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/unicode/letter.odin b/core/unicode/letter.odin index 891c90bf3..ff167334c 100644 --- a/core/unicode/letter.odin +++ b/core/unicode/letter.odin @@ -144,10 +144,10 @@ is_combining :: proc(r: rune) -> bool { c := i32(r) return c >= 0x0300 && (c <= 0x036f || - (c >= 0x1ab0 && c <= 0x1aff) || - (c >= 0x1dc0 && c <= 0x1dff) || - (c >= 0x20d0 && c <= 0x20ff) || - (c >= 0xfe20 && c <= 0xfe2f)) + (c >= 0x1ab0 && c <= 0x1aff) || + (c >= 0x1dc0 && c <= 0x1dff) || + (c >= 0x20d0 && c <= 0x20ff) || + (c >= 0xfe20 && c <= 0xfe2f)) }