From 4376ccb77dd249333eddb9ce77d4f351593c29fb Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Sun, 19 Jan 2025 21:22:33 -0600 Subject: [PATCH] Renamed function calls to use new names --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index dc2392d..68fdd2c 100644 --- a/main.go +++ b/main.go @@ -119,12 +119,12 @@ func main() { } matchIndices := make([]Match, 0) if matchNumFlagEnabled { - tmp, err := findNthMatch(regComp, test_str, *matchNum) + tmp, err := FindNthMatch(regComp, test_str, *matchNum) if err == nil { matchIndices = append(matchIndices, tmp) } } else { - matchIndices = findAllMatches(regComp, test_str) + matchIndices = FindAllMatches(regComp, test_str) } if *printMatchesFlag {