Skip to content

Commit 9658bf6

Browse files
committed
docs: update line width docs to reflect Col100 default
Made-with: Cursor
1 parent 11b7851 commit 9658bf6

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/ai-workflow/prds/prd-v0.2.3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ After v0.2.2 addressed critical bugs and CLI improvements, users expect standard
116116
#### 2.1 Configurable Line Width (Issue #15)
117117
- **Feature:** Limit text width for improved readability
118118
- **Setting:** `max_line_width` in Settings > Editor
119-
- **Options:**
120-
- Off (default, current behavior)
119+
- **Options:**
120+
- Off (no width limit)
121121
- 80 characters
122-
- 100 characters
122+
- 100 characters (default)
123123
- 120 characters
124124
- Custom pixel width
125125
- **Behavior:**

docs/technical/configurable-line-width.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Added `MaxLineWidth` enum with the following variants:
1414

1515
```rust
1616
pub enum MaxLineWidth {
17-
Off, // No width limit (default)
17+
Off, // No width limit
1818
Col80, // 80 characters
19-
Col100, // 100 characters
19+
Col100, // 100 characters (default)
2020
Col120, // 120 characters
2121
Custom(u32), // Custom pixel width (400-2000px)
2222
}
@@ -28,7 +28,7 @@ Key methods:
2828
- `description() -> &'static str` - Returns descriptive text
2929
- `is_custom() -> bool` - Checks if this is a custom width
3030

31-
Added `max_line_width` field to `Settings` struct with default value `MaxLineWidth::Off`.
31+
Added `max_line_width` field to `Settings` struct with default value `MaxLineWidth::Col100`.
3232

3333
### Settings UI (`src/ui/settings.rs`)
3434

0 commit comments

Comments
 (0)