From 791a29ec9f7a94073f87c4fcacfe4d24fc58be21 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Tue, 19 Jun 2018 15:40:17 -0400 Subject: [PATCH] Typo fix Discernible --- .../how-to-copy-pixels-for-reducing-flicker-in-windows-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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