From 0bbe5ed3757a163054fb12a64c6a579e27662a0a Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Thu, 12 Feb 2026 23:58:06 +0100 Subject: [PATCH] Update pkg/cli/repl/repl.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pkg/cli/repl/repl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/repl/repl.go b/pkg/cli/repl/repl.go index 1e9ffbd..5f0faa8 100644 --- a/pkg/cli/repl/repl.go +++ b/pkg/cli/repl/repl.go @@ -28,7 +28,7 @@ func NewRepl() *REPL { return &REPL{} } -// RunREPL starts the interactive Read-Eval-Print Loop for the PM CLI. +// Run starts the interactive Read-Eval-Print Loop for the PM CLI. func (r *REPL) Run(ctx context.Context, config cli.CLIConfig) error { // Set terminal to raw mode to capture input properly in the REPL. // This allows us to handle input character by character and provide a better user experience.