Update pkg/cli/repl/repl.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robin Olsen
2026-02-12 23:58:06 +01:00
committed by GitHub
parent d670ec0dc2
commit 0bbe5ed375

View File

@@ -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.