about summary refs log tree commit diff stats
path: root/lib/Octans/RangeSearch.rakumod
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/RangeSearch.rakumod
parent4c77f3376020ea13754b2f635ce07094cdc4a226 (diff)
downloadoctans-34dcef166e47d268e98973f609da470c59ed5f07.tar.gz
Change subroutine declaration style
From:
    sub t () {}

To:
    sub t() {}
Diffstat (limited to 'lib/Octans/RangeSearch.rakumod')
-rw-r--r--lib/Octans/RangeSearch.rakumod4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Octans/RangeSearch.rakumod b/lib/Octans/RangeSearch.rakumod
index e287d93..c6674a6 100644
--- a/lib/Octans/RangeSearch.rakumod
+++ b/lib/Octans/RangeSearch.rakumod
@@ -1,5 +1,3 @@
-unit module Octans::RangeSearch;
-
 # range-starts-with returns a subset of given @dict list that start
 # with $str. It should be faster than:
 #
@@ -7,7 +5,7 @@ unit module Octans::RangeSearch;
 #
 # @dict should be a sorted list of words. It performs binary lookup on
 # the list.
-sub range-starts-with (
+sub range-starts-with(
     @dict, Str $str --> List
 ) is export {
     # $lower, $upper hold the lower and upper index of the range