about summary refs log tree commit diff stats
path: root/lib/Octans/Puzzle
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-03-03 23:18:52 +0530
committerAndinus <andinus@nand.sh>2021-03-03 23:18:52 +0530
commit34dcef166e47d268e98973f609da470c59ed5f07 (patch)
treedd15d46051b5c41e731bcb53a331ed807ab69956 /lib/Octans/Puzzle
parent4c77f3376020ea13754b2f635ce07094cdc4a226 (diff)
downloadoctans-34dcef166e47d268e98973f609da470c59ed5f07.tar.gz
Change subroutine declaration style
From:
    sub t () {}

To:
    sub t() {}
Diffstat (limited to 'lib/Octans/Puzzle')
-rw-r--r--lib/Octans/Puzzle/Get.rakumod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Octans/Puzzle/Get.rakumod b/lib/Octans/Puzzle/Get.rakumod
index 1783796..f4094b2 100644
--- a/lib/Octans/Puzzle/Get.rakumod
+++ b/lib/Octans/Puzzle/Get.rakumod
@@ -2,7 +2,7 @@ use WWW;
 use Octans::Puzzle;
 
 # get-puzzle returns Puzzle.new() given input path.
-sub get-puzzle (
+sub get-puzzle(
     Str $path
 ) is export {
     my @grids;