Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
What's New in libchewing (unreleased)
---------------------------------------------------------

* Changes
- conversion: adjust max output paths down to 10.

What's New in libchewing 0.11.0 (January 10, 2026)
---------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/conversion/chewing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct ChewingEngine {
}

impl ChewingEngine {
const MAX_OUT_PATHS: usize = 100;
const MAX_OUT_PATHS: usize = 10;
/// Creates a new conversion engine.
pub fn new() -> ChewingEngine {
ChewingEngine {
Expand Down
Loading