summaryrefslogtreecommitdiff
path: root/internal/repl
diff options
context:
space:
mode:
Diffstat (limited to 'internal/repl')
-rw-r--r--internal/repl/commands.go2
1 files changed, 1 insertions, 1 deletions
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
}