Skip to content

Commit 94a5807

Browse files
authored
Merge pull request #14011 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 a68ee9f + 634dde1 commit 94a5807

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/code-quality/how-to-generate-code-metrics-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ The new command-line code metrics tool computes metrics even in the presence of
242242

243243
#### Metric value differences
244244

245-
Starting in Visual Studio 2019 version 16.4 and Microsoft.CodeAnalysis.Metics (2.9.5), `SourceLines` and `ExecutableLines` replace the previous `LinesOfCode` metric. For descriptions of the new metrics, see [Code metrics values](../code-quality/code-metrics-values.md). The `LinesOfCode` metric is available in legacy mode.
245+
Starting in Visual Studio 2019 version 16.4 and Microsoft.CodeAnalysis.Metrics (2.9.5), `SourceLines` and `ExecutableLines` replace the previous `LinesOfCode` metric. For descriptions of the new metrics, see [Code metrics values](../code-quality/code-metrics-values.md). The `LinesOfCode` metric is available in legacy mode.
246246

247247
Other metrics such as `CyclomaticComplexity` and `MaintainabilityIndex` use the same formulas as previous versions of *Metrics.exe*, but the new tool counts the number of `IOperations` (logical source instructions) instead of intermediate language (IL) instructions. The numbers will be slightly different to those generated by the Visual Studio IDE and by previous versions of *Metrics.exe*.
248248

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that specifies whether the preprocesser directive for a safe buffer is used."
2+
description: "Retrieves a flag that specifies whether the preprocessor directive for a safe buffer is used."
33
title: "IDiaSymbol::get_isSafeBuffers"
44
ms.date: "07/22/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
@@ -151,7 +151,7 @@ The following table shows the methods of `IDiaSymbol`.
151151
|[`IDiaSymbol::get_isPointerToMemberFunction`](../../debugger/debug-interface-access/idiasymbol-get-ispointertomemberfunction.md)|Specifies whether this symbol is a pointer to a member function.|
152152
|[`IDiaSymbol::get_isRefUdt`](../../debugger/debug-interface-access/idiasymbol-get-isrefudt.md)|Retrieves a flag indicating whether this is a WinRT reference user-defined type (UDT).|
153153
|[`IDiaSymbol::get_isReturnValue`](../../debugger/debug-interface-access/idiasymbol-get-isreturnvalue.md)|Specifies whether the variable carries a return value.|
154-
|[`IDiaSymbol::get_isSafeBuffers`](../../debugger/debug-interface-access/idiasymbol-get-issafebuffers.md)|Retrieves a flag that specifies whether the preprocesser directive for a safe buffer is used.|
154+
|[`IDiaSymbol::get_isSafeBuffers`](../../debugger/debug-interface-access/idiasymbol-get-issafebuffers.md)|Retrieves a flag that specifies whether the preprocessor directive for a safe buffer is used.|
155155
|[`IDiaSymbol::get_isSdl`](../../debugger/debug-interface-access/idiasymbol-get-issdl.md)|Specifies whether the module is compiled with the /SDL option.|
156156
|[`IDiaSymbol::get_isSingleInheritance`](../../debugger/debug-interface-access/idiasymbol-get-issingleinheritance.md)|Specifies whether the `this` pointer points to a data member with single inheritance.|
157157
|[`IDiaSymbol::get_isSplitted`](../../debugger/debug-interface-access/idiasymbol-get-issplitted.md)|Retrieves a flag indicating whether the data has been split into an aggregate of separate symbols.|

docs/extensibility/debugger/program-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ helpviewer_keywords:
77
- program nodes, debugging context
88
- debugging [Debugging SDK], program nodes
99
- program nodes, adding
10-
- program nodes, superceding
10+
- program nodes, superseding
1111
author: tinaschrepfer
1212
ms.author: tinali
1313
manager: mijacobs

docs/snippets/cpp/VS_Snippets_Misc/NVC_MFC_DrawClient/cpp/drawtool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ void CRectTool::OnLButtonDown(CDrawView* pView, UINT nFlags, const CPoint& point
307307
switch (m_drawShape)
308308
{
309309
default:
310-
ASSERT(FALSE); // unsuported shape!
310+
ASSERT(FALSE); // unsupported shape!
311311

312312
case rect:
313313
pObj->m_nShape = CDrawRect::rectangle;

docs/vsto/codesnippet/VisualBasic/setexceldocumentproperties/module1.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Module Module1
4545
solutionID, deploymentManifestLocation, _
4646
True, nonpublicCachedDataMembers)
4747

48-
Console.WriteLine("Insallation Location Modified Successfully")
48+
Console.WriteLine("Installation Location Modified Successfully")
4949

5050
Catch ex As System.IO.FileNotFoundException
5151
Console.WriteLine("The specified document does not exist.")

0 commit comments

Comments
 (0)