From cd7cd3ceda5bff78e7efa47dc32b72f4a1d558cd Mon Sep 17 00:00:00 2001 From: Jakub <168542356+JakubSchwenkbeck@users.noreply.github.com> Date: Tue, 14 Jan 2025 00:39:54 +0100 Subject: [PATCH] add missing indentation --- examples/stdlib/exception/out_of_bounds.effekt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/stdlib/exception/out_of_bounds.effekt b/examples/stdlib/exception/out_of_bounds.effekt index 30ca442c6..31f9ff2cf 100644 --- a/examples/stdlib/exception/out_of_bounds.effekt +++ b/examples/stdlib/exception/out_of_bounds.effekt @@ -6,8 +6,8 @@ def main() = { val str = "Hallo" def charOrOutOfBounds { p: => Char / Exception[OutOfBounds] }: Unit = { - with on[OutOfBounds].default { println("Index Out of Bound") } - println(p().show) + with on[OutOfBounds].default { println("Index Out of Bound") } + println(p().show) } charOrOutOfBounds { str.charAt(10) }