From d49632d2219df9d50c2cea282a88ef6a2529216f Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sun, 9 Nov 2025 18:24:45 -0500 Subject: [PATCH] Make CopyArgument() documentation more clear --- core/copy.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/copy.go b/core/copy.go index 767e13d..c2dc71f 100644 --- a/core/copy.go +++ b/core/copy.go @@ -14,7 +14,8 @@ import ( ) // CopyArgument copies a field from an entry to the clipboard. -// If field is -1, it will not continuously update the clipboard (one-time copy). +// If field is -1, it will one-time copy the TOTP code +// (instead of keeping the clipboard up-to-date). func CopyArgument(targetLocation string, field int) error { // ensure targetLocation exists and is a file _, err := back.TargetIsFile(targetLocation, true)