Skip to content

Commit

Permalink
fix caps
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-martian committed Sep 5, 2024
1 parent 589965d commit 1cf3b79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lttoolbox/reusable_state.cc
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ void ReusableState::extract(size_t pos, UString& result, double& weight,
})
for (auto it = symbols.rbegin(); it != symbols.rend(); it++) {
if (escaped_chars.find(*it) != escaped_chars.end()) result += '\\';
alphabet.getSymbol(result, *it, uppercase);
alphabet.getSymbol(result, *it, uppercase && get(pos).dirty);
}
}

Expand Down

0 comments on commit 1cf3b79

Please sign in to comment.