diff --git a/docs/mfc/codesnippet/CPP/cdc-class_12.cpp b/docs/mfc/codesnippet/CPP/cdc-class_12.cpp index f600764d408..5691faf1922 100644 --- a/docs/mfc/codesnippet/CPP/cdc-class_12.cpp +++ b/docs/mfc/codesnippet/CPP/cdc-class_12.cpp @@ -18,11 +18,11 @@ void CDCView::DrawRoundRect(CDC* pDC) // Draw a thick black rectangle filled with blue // corners rounded at a 17-unit radius. Note that - // a radius of three or less is not noticable because + // a radius of three or less is not noticeable because // the pen is three units wide. pDC->RoundRect(rect, CPoint(17, 17)); // put back the old objects pDC->SelectObject(pOldBrush); pDC->SelectObject(pOldPen); -} \ No newline at end of file +}