diff --git a/docs/framework/winforms/advanced/how-to-copy-pixels-for-reducing-flicker-in-windows-forms.md b/docs/framework/winforms/advanced/how-to-copy-pixels-for-reducing-flicker-in-windows-forms.md index ebe80d0d4180d..89380aea7e4b3 100644 --- a/docs/framework/winforms/advanced/how-to-copy-pixels-for-reducing-flicker-in-windows-forms.md +++ b/docs/framework/winforms/advanced/how-to-copy-pixels-for-reducing-flicker-in-windows-forms.md @@ -22,7 +22,7 @@ When you animate a simple graphic, users can sometimes encounter flicker or othe In the example below, a shape is drawn on the form in its event handler. Then, the method is used to duplicate the shape. > [!NOTE] -> Setting the form's property to `true` will make graphics-based code in the event be double-buffered. While this will not have any discernable performance gains when using the code below, it is something to keep in mind when working with more complex graphics-manipulation code. +> Setting the form's property to `true` will make graphics-based code in the event be double-buffered. While this will not have any discernible performance gains when using the code below, it is something to keep in mind when working with more complex graphics-manipulation code. ## Example