Skip to content

Commit 12cd782

Browse files
authored
Merge pull request #13977 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 75c5cff + 558ae8e commit 12cd782

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/debugger/debug-interface-access/enumerations-and-structures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Specifies a target register.
7474

7575
- [`CV_modifier_e`](../../debugger/debug-interface-access/cv-modifier-e.md)
7676

77-
Specifies type modifers.
77+
Specifies type modifiers.
7878

7979
- [`DataKind` Enumeration](../../debugger/debug-interface-access/datakind.md)
8080

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the set of modifers for this symbol."
2+
description: "Retrieves the set of modifiers for this symbol."
33
title: "IDiaSymbol::get_modifierValues"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ The following table shows the methods of `IDiaSymbol`.
176176
|[`IDiaSymbol::get_machineType`](../../debugger/debug-interface-access/idiasymbol-get-machinetype.md)|Retrieves the type of the target CPU.|
177177
|[`IDiaSymbol::get_managed`](../../debugger/debug-interface-access/idiasymbol-get-managed.md)|Retrieves a flag that indicating whether the symbol refers to managed code.|
178178
|[`IDiaSymbol::get_memorySpaceKind`](../../debugger/debug-interface-access/idiasymbol-get-memoryspacekind.md)|Retrieves the memory space kind.|
179-
|[`IDiaSymbol::get_modifierValues`](../../debugger/debug-interface-access/idiasymbol-get-modifiervalues.md)|Retrieves the set of modifers for this symbol.|
179+
|[`IDiaSymbol::get_modifierValues`](../../debugger/debug-interface-access/idiasymbol-get-modifiervalues.md)|Retrieves the set of modifiers for this symbol.|
180180
|[`IDiaSymbol::get_msil`](../../debugger/debug-interface-access/idiasymbol-get-msil.md)|Retrieves a flag indicating whether the symbol refers to Microsoft Intermediate Language (MSIL) code.|
181181
|[`IDiaSymbol::get_name`](../../debugger/debug-interface-access/idiasymbol-get-name.md)|Retrieves the name of the symbol.|
182182
|[`IDiaSymbol::get_nested`](../../debugger/debug-interface-access/idiasymbol-get-nested.md)|Retrieves a flag indicating whether the user-defined data type is nested.|

docs/snippets/cpp/VS_Snippets_Winforms/Classic RichTextBox.SaveFile Example/CPP/source.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public ref class Form1: public Form
2020
// Create a SaveFileDialog to request a path and file name to save to.
2121
SaveFileDialog^ saveFile1 = gcnew SaveFileDialog;
2222

23-
// Initialize the SaveFileDialog to specify the RTF extention for the file.
23+
// Initialize the SaveFileDialog to specify the RTF extension for the file.
2424
saveFile1->DefaultExt = "*.rtf";
2525
saveFile1->Filter = "RTF Files|*.rtf";
2626

0 commit comments

Comments
 (0)