Skip to content

Commit

Permalink
Fixed Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DTeachs committed Jul 17, 2019
1 parent 676e287 commit 7b77a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalControl/TermControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ namespace winrt::Microsoft::Terminal::TerminalControl::implementation
// endings
if (_settings.ConvertPasteLineEndings())
{
const static std::wregex rgx{ L"\n\r" };
const static std::regex rgx{ L"\n\r" };
std::wstring stripped = std::regex_replace(wstr, rgx, L"\n");
_SendInputToConnection(stripped);
}
Expand Down

0 comments on commit 7b77a6b

Please sign in to comment.