Skip to content

Commit 9f25c3f

Browse files
authored
Merge pull request #13987 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 e0143b0 + 0120807 commit 9f25c3f

File tree

87 files changed

+112
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+112
-112
lines changed

docs/debugger/debug-interface-access/idiasessionex-isfastlinkpdb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ HRESULT isFastLinkPDB(
3737

3838
## Remarks
3939

40-
If debug information was compiled with `/DEBUG:fastlink` then not all of the inforation is contained within the `.PDB` and in order fo the debugger to fully work, it must access the debug inforation contained within oms of the intermediate build files (like `.OBJ`, `.LIB`, and `.PCH` files). Fastlink PDBs are no longer recommended.
40+
If debug information was compiled with `/DEBUG:fastlink` then not all of the information is contained within the `.PDB` and in order fo the debugger to fully work, it must access the debug information contained within oms of the intermediate build files (like `.OBJ`, `.LIB`, and `.PCH` files). Fastlink PDBs are no longer recommended.
4141

4242
## See also
4343

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddressoffset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HRESULT get_exceptionHandlerAddressOffset (
4040
4141
## Remarks
4242

43-
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception inforation.
43+
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception information.
4444

4545
## See also
4646

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddresssection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HRESULT get_exceptionHandlerAddressSection (
4040
4141
## Remarks
4242

43-
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception inforation.
43+
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception information.
4444

4545
## See also
4646

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlerrelativevirtualaddress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HRESULT get_exceptionHandlerRelativeVirtualAddress (
4040
4141
## Remarks
4242

43-
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception inforation.
43+
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception information.
4444

4545
## See also
4646

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlervirtualaddress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ HRESULT get_exceptionHandlerVirtualAddress (
4040
4141
## Remarks
4242

43-
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception inforation.
43+
For machines that do not use `.pdata` and `.xdata` for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception information.
4444

4545
## See also
4646

docs/ide/quick-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If there's an error in your code, and Visual Studio has a recommended fix, you s
7575
- To apply the recommended change to your code, select the icon. You can also select Ctrl + period (.) when your cursor is on a line of code that shows an available action.
7676

7777
> [!TIP]
78-
> You can turn off some of the code fix Quick Actions. For more informatio, see [Disable source code analysis for .NET](../code-quality/disable-code-analysis.md).
78+
> You can turn off some of the code fix Quick Actions. For more information, see [Disable source code analysis for .NET](../code-quality/disable-code-analysis.md).
7979
8080
::: moniker range=">=vs-2022"
8181
## Get AI assistance

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_CustomPages/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void CMainFrame::OnViewCustomize()
144144
//------------------------------------
145145
// <snippet3>
146146
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
147-
TRUE /* Automatic menus scaning */,
147+
TRUE /* Automatic menus scanning */,
148148
AFX_CUSTOMIZE_MENU_SHADOWS | AFX_CUSTOMIZE_TEXT_LABELS |
149149
AFX_CUSTOMIZE_MENU_ANIMATIONS, // default parameters
150150
&lstCustomPages); // pointer to the list of runtime classes of the custom property pages

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_DrawClient/cpp/drawvw.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class CDrawView : public CScrollView
9696
virtual void Dump(CDumpContext& dc) const;
9797
#endif
9898

99-
virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo); // overriden to record time/date
99+
virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo); // overridden to record time/date
100100
virtual void OnDraw(CDC* pDC); // overridden to draw this view
101101
virtual void OnActivateView(BOOL bActivate, CView* pActiveView, CView* pDeactiveView);
102102
virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);

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
@@ -229,7 +229,7 @@ void CMainFrame::OnViewCustomize()
229229
// Create a customize toolbars dialog:
230230
//------------------------------------
231231
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
232-
TRUE /* Automatic menus scaning */
232+
TRUE /* Automatic menus scanning */
233233
);
234234

235235
pDlgCust->Create ();

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_IEDemo/cpp/MainFrm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ void CMainFrame::OnViewCustomize()
342342
// Create a customize toolbars dialog:
343343
//------------------------------------
344344
CMFCToolBarsCustomizeDialog* pDlgCust = new CMFCToolBarsCustomizeDialog (this,
345-
TRUE /* Automatic menus scaning */,
345+
TRUE /* Automatic menus scanning */,
346346
AFX_CUSTOMIZE_TEXT_LABELS | AFX_CUSTOMIZE_NOTOOLS | AFX_CUSTOMIZE_NO_LARGE_ICONS);
347347

348348
CMenu menuFavorites;

0 commit comments

Comments
 (0)