From 6fe6fdee8c273360c9ef83824d355cde6c96a1a5 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 14 Oct 2025 20:14:12 +0000 Subject: [PATCH] style: format code with Ktlint This commit fixes the style issues introduced in 61e293e according to the output from Ktlint. Details: None --- src/main/kotlin/org/example/Heading.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/example/Heading.kt b/src/main/kotlin/org/example/Heading.kt index 1e60597..18735d6 100644 --- a/src/main/kotlin/org/example/Heading.kt +++ b/src/main/kotlin/org/example/Heading.kt @@ -4,11 +4,12 @@ enum class Heading(val symbol: Char) { NORTH('N'), EAST('E'), SOUTH('S'), - WEST('W'); + WEST('W'), + ; override fun toString(): String = symbol.toString() companion object { fun from(symbol: Char): Heading? = entries.firstOrNull { it.symbol == symbol } } -} \ No newline at end of file +}