From 591f12f6c2eafa0d565ed85867d03e92f28406b5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 20 Mar 2026 22:55:39 +0200 Subject: internal/calculator/internal/repl: Add missing comments for exported functions - Added Parse() comment in calculator.go - Updated Commands() comment in repl/commands.go to be more descriptive --- internal/repl/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/repl') diff --git a/internal/repl/commands.go b/internal/repl/commands.go index 656f670..d03672e 100644 --- a/internal/repl/commands.go +++ b/internal/repl/commands.go @@ -8,7 +8,7 @@ import ( // builtinCommands defines the built-in REPL commands var builtinCommands = []string{"help", "clear", "quit", "exit", "rpn", "calc"} -// Commands returns the list of built-in command names +// Commands returns the list of built-in command names supported by the REPL. func Commands() []string { return builtinCommands } -- cgit v1.2.3