Skip to content

Commit 4e556d6

Browse files
committed
Correct a repeated typo in the comments.
1 parent f3ac965 commit 4e556d6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/renderer/base/renderer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ void Renderer::_PaintSelection(_In_ IRenderEngine* const pEngine)
12171217
// Arguments:
12181218
// - pEngine - Which engine is being updated
12191219
// - textAttributes - The 16 color foreground/background combination to set
1220-
// - usingSoftFont - Whether we're rendering characters from a soft soft
1220+
// - usingSoftFont - Whether we're rendering characters from a soft font
12211221
// - isSettingDefaultBrushes - Alerts that the default brushes are being set which will
12221222
// impact whether or not to include the hung window/erase window brushes in this operation
12231223
// and can affect other draw state that wants to know the default color scheme.

src/renderer/dx/DxRenderer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1910,7 +1910,7 @@ CATCH_RETURN()
19101910
// Arguments:
19111911
// - textAttributes - Text attributes to use for the brush color
19121912
// - pData - The interface to console data structures required for rendering
1913-
// - usingSoftFont - Whether we're rendering characters from a soft soft
1913+
// - usingSoftFont - Whether we're rendering characters from a soft font
19141914
// - isSettingDefaultBrushes - Lets us know that these are the default brushes to paint the swapchain background or selection
19151915
// Return Value:
19161916
// - S_OK or relevant DirectX error.

src/renderer/gdi/state.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ GdiEngine::~GdiEngine()
269269
// Arguments:
270270
// - textAttributes - Text attributes to use for the brush color
271271
// - pData - The interface to console data structures required for rendering
272-
// - usingSoftFont - Whether we're rendering characters from a soft soft
272+
// - usingSoftFont - Whether we're rendering characters from a soft font
273273
// - isSettingDefaultBrushes - Lets us know that the default brushes are being set so we can update the DC background
274274
// and the hung app background painting color
275275
// Return Value:

src/renderer/vt/Xterm256Engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Xterm256Engine::Xterm256Engine(_In_ wil::unique_hfile hPipe,
2020
// Arguments:
2121
// - textAttributes - Text attributes to use for the colors and character rendition
2222
// - pData - The interface to console data structures required for rendering
23-
// - usingSoftFont - Whether we're rendering characters from a soft soft
23+
// - usingSoftFont - Whether we're rendering characters from a soft font
2424
// - isSettingDefaultBrushes: indicates if we should change the background color of
2525
// the window. Unused for VT
2626
// Return Value:

src/renderer/vt/XtermEngine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ XtermEngine::XtermEngine(_In_ wil::unique_hfile hPipe,
137137
// Arguments:
138138
// - textAttributes - Text attributes to use for the colors and character rendition
139139
// - pData - The interface to console data structures required for rendering
140-
// - usingSoftFont - Whether we're rendering characters from a soft soft
140+
// - usingSoftFont - Whether we're rendering characters from a soft font
141141
// - isSettingDefaultBrushes: indicates if we should change the background color of
142142
// the window. Unused for VT
143143
// Return Value:

0 commit comments

Comments
 (0)