Skip to content

Commit 1befdfb

Browse files
Copilotfuxingloh
andcommitted
docs: clarify output width comment
Co-authored-by: fuxingloh <4266087+fuxingloh@users.noreply.github.com>
1 parent 2e2b219 commit 1befdfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/use-agently/src/output.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function resolveOutputFormat(command: Command): OutputFormat {
2121
}
2222
}
2323

24-
/** Available width: use terminal columns if known, otherwise 80, but at least 120. */
24+
/** Available width: use terminal columns if known, otherwise default to 120 (minimum 120). */
2525
export function getMaxWidth(): number {
2626
return Math.max(process.stdout.columns || 80, 120);
2727
}

0 commit comments

Comments
 (0)