From fe5840522090105680e22c9cb46c064dab579d56 Mon Sep 17 00:00:00 2001 From: Jen Basch Date: Tue, 12 May 2026 13:53:15 -0700 Subject: [PATCH] Improve some doc comments in `pkl:Command` (#1582) --- stdlib/Command.pkl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stdlib/Command.pkl b/stdlib/Command.pkl index 53e847db..6b4c0b97 100644 --- a/stdlib/Command.pkl +++ b/stdlib/Command.pkl @@ -257,10 +257,12 @@ class Argument extends Annotation { completionCandidates: "paths" | *Listing(isDistinct) } -/// A value used in [Flag.convert] and [Argument.convert] to declare an option as a dynamic -/// import. +/// A value used in [Flag.convert], [Flag.transformAll], [Argument.convert], and +/// [Argument.transformAll] functions to trigger a dynamic module import. class Import { - /// The absolute URI of the module to import. + /// The URI of the module to import. + /// + /// Relative paths are resolved relative to the current working directory. uri: String /// Whether [uri] should be interpreted as a glob pattern.