Skip to content

Commit 8bd4ece

Browse files
authored
Merge pull request #14019 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch main)
2 parents 8739f5c + f92d4ff commit 8bd4ece

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_DesktopAlertDemo/cpp/DesktopAlertDemo.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ FONT 8, "MS Sans Serif", 0, 0, 0x1
129129
BEGIN
130130
LTEXT "John Smith",IDC_FROM,28,3,62,8,0,WS_EX_TRANSPARENT
131131
ICON IDI_MAIL,IDC_STATIC,2,3,20,20,0,WS_EX_TRANSPARENT
132-
PUSHBUTTON "Hello,\r\nI'm sending you the requsted information",
132+
PUSHBUTTON "Hello,\r\nI'm sending you the requested information",
133133
IDC_BUTTON1,28,21,104,27,0,WS_EX_TRANSPARENT
134134
PUSHBUTTON "",IDC_FLAG,2,29,12,12
135135
PUSHBUTTON "",IDC_DELETE,14,29,12,12

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_DrawClient/cpp/propset.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ BOOL CProperty::WriteToStream( IStream* pIStream )
461461
if (m_dwType & VT_VECTOR)
462462
{
463463
// Value is a DWORD count of elements followed by
464-
// that many repititions of the value.
464+
// that many repetitions of the value.
465465
//
466466
nReps = *(LPDWORD)pCur;
467467
cbTotal = sizeof(DWORD);

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_Explorer/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
137137
return -1; // fail to create
138138
}
139139

140-
// Each rebar pane will ocupy its own row:
140+
// Each rebar pane will occupy its own row:
141141
DWORD dwStyle = RBBS_GRIPPERALWAYS | RBBS_FIXEDBMP | RBBS_BREAK;
142142

143143
if (!m_wndReBar.Create(this) ||

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_RebarTest/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
140140
}
141141

142142
// <snippet2>
143-
// Each rebar pane will ocupy its own row:
143+
// Each rebar pane will occupy its own row:
144144
DWORD dwStyle = RBBS_GRIPPERALWAYS | RBBS_FIXEDBMP | RBBS_BREAK;
145145
// CMFCMenuBar m_wndMenuBar
146146
// CMFCToolBar m_wndToolBar

docs/snippets/cpp/VS_Snippets_Misc/wrl-media-capture/cpp/grayscaletransform/grayscaletransform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class CGrayscale
219219
IMFMediaType *m_pInputType; // Input media type.
220220
IMFMediaType *m_pOutputType; // Output media type.
221221

222-
// Fomat information
222+
// Format information
223223
UINT32 m_imageWidthInPixels;
224224
UINT32 m_imageHeightInPixels;
225225
DWORD m_cbImageSize; // Image size, in bytes.

0 commit comments

Comments
 (0)