@@ -32,22 +32,22 @@ public struct Target: Identifiable {
3232 self . execName = execName
3333 }
3434
35- /// ``id` ` is a unique identifier of the target set by the extension
35+ /// `id ` is a unique identifier of the target set by the extension
3636 public var id : String
3737
38- /// `` displayName` ` is a name to be displayed in the UI to represent target
38+ /// `displayName` is a name to be displayed in the UI to represent target
3939 public var displayName : String
4040
41- /// `` executable` ` is the executable to launch inside the pseudo terminal
41+ /// `executable` is the executable to launch inside the pseudo terminal
4242 public var executable : String
4343
44- /// `` args` ` is an array of strings that is passed as the arguments to the underlying process
44+ /// `args` is an array of strings that is passed as the arguments to the underlying process
4545 public var args : [ String ] = [ ]
4646
47- /// `` environment` ` is an array of environment variables to pass to the child process.
47+ /// `environment` is an array of environment variables to pass to the child process.
4848 public var environment : [ String ] ?
4949
50- /// `` execName` ` If provided, this is used as the Unix argv[0] parameter, otherwise,
50+ /// `execName` If provided, this is used as the Unix argv[0] parameter, otherwise,
5151 /// the executable is used as the args [0], this is used when the intent is to set a different
5252 /// process name than the file that backs it.
5353 public var execName : String ?
0 commit comments