Skip to content

Commit bdc63fe

Browse files
authored
Merge pull request #14028 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 f110aca + dde45fd commit bdc63fe

File tree

19 files changed

+22
-22
lines changed

19 files changed

+22
-22
lines changed

docs/modeling/browse-and-rearrange-code-maps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,11 @@ You can change the icons on code elements and the colors of code elements and li
289289
|Specific color or icon|Open the category or property value list. Select a color or icon.|
290290

291291
> [!NOTE]
292-
> You can rearrange, delete, or temporarily inactivate styles in the **Legend** box. See [Edit the Legend box](#ModifyLegend).
292+
> You can rearrange, delete, or temporarily deactivate styles in the **Legend** box. See [Edit the Legend box](#ModifyLegend).
293293
294294
## <a name="ModifyLegend"></a> Edit the Legend box
295295

296-
You can rearrange, delete, or temporarily inactivate styles in the **Legend** box:
296+
You can rearrange, delete, or temporarily deactivate styles in the **Legend** box:
297297

298298
1. Open the shortcut menu for a style in the **Legend** box.
299299

docs/modeling/properties-of-domain-relationships.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Properties of Domain Relationships
3-
description: Learn about the properties that are associated with a domain relationshop, like Access Modifier, Custome Attributes, and Generates Double Derived.
3+
description: Learn about the properties that are associated with a domain relationship, like Access Modifier, Custom Attributes, and Generates Double Derived.
44
ms.date: 11/04/2016
55
ms.topic: reference
66
helpviewer_keywords:

docs/modeling/properties-of-domain-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Properties of Domain Roles
3-
description: Learn about the properties that are associated with a domain role, like Collection Type, Custome Attributes, and Is Property Browsable.
3+
description: Learn about the properties that are associated with a domain role, like Collection Type, Custom Attributes, and Is Property Browsable.
44
ms.date: 11/04/2016
55
ms.topic: reference
66
author: mgoertz-msft

docs/snippets/cpp/VS_Snippets_Winforms/ServiceContainerExample/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public ref class Form1: public Form
175175

176176
void button2_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
177177
{
178-
/* ServiceContainer will throw an excpetion if a duplicate service
178+
/* ServiceContainer will throw an exception if a duplicate service
179179
is added so remove it before we add */
180180
//<Snippet4>
181181
m_MyServiceContainer->RemoveService( Control::typeid );

docs/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.Control.PerformLayout/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ using namespace System;
1515
using namespace System::Windows::Forms;
1616
using namespace System::Drawing;
1717

18-
// This custom control has the Layout event implented so that when
18+
// This custom control has the Layout event implemented so that when
1919
// PerformLayout(AffectedControl, AffectedProperty) is called
2020
// on the control, where AffectedProperty equals "Bounds" the
2121
// textbox is centered on the control.

docs/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.FormsActivate/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ref class Form1: public System::Windows::Forms::Form
6464
this->Button1->Name = "Button1";
6565
this->Button1->Size = System::Drawing::Size( 96, 56 );
6666
this->Button1->TabIndex = 0;
67-
this->Button1->Text = "Click me for an new inactivated form.";
67+
this->Button1->Text = "Click me for an new deactivated form.";
6868
this->Button1->Click += gcnew System::EventHandler( this, &Form1::Button1_Click );
6969

7070
//

docs/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.VisualStyles.VisualStyleRenderer/cpp/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ namespace VisualStyleRendererSample
8686

8787
// Get the sizes and location offsets for the window parts
8888
// as specified by the visual style, and then use this
89-
// information to calcualate the rectangles for each part.
89+
// information to calculate the rectangles for each part.
9090
GetPartDetails();
9191
CalculateRectangles();
9292

docs/snippets/csharp/VS_Snippets_CodeAnalysis/FxCop.Design.UseGenerics/cs/FxCop.Design.UseGenerics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void Swap(ref object object1, ref object object2)
1515
object2 = temp;
1616
}
1717

18-
// This method satifies the rule.
18+
// This method satisfies the rule.
1919
public static void GenericSwap<T>(ref T reference1, ref T reference2)
2020
{
2121
T temp = reference1;

docs/snippets/csharp/VS_Snippets_CodeAnalysis/fxcop.security.ca2131.criticaltypesmustnotparticipateintypeequivalence/cs/ca2131-criticaltypesmustnotparticipateintypeequivalence.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace TransparencyWarningsDemo
1010
{
1111

12-
// CA2131 error - critical type participating in equivilance
12+
// CA2131 error - critical type participating in equivalence
1313
[SecurityCritical]
1414
[TypeIdentifier("3a5b6203-2bf1-4f83-b5b4-1bdc334ad3ea", "ICriticalEquivilentInterface")]
1515
public interface ICriticalEquivilentInterface
@@ -20,7 +20,7 @@ public interface ICriticalEquivilentInterface
2020
[TypeIdentifier("3a5b6203-2bf1-4f83-b5b4-1bdc334ad3ea", "ITransparentEquivilentInterface")]
2121
public interface ITransparentEquivilentInterface
2222
{
23-
// CA2131 error - critical method in a type participating in equivilance
23+
// CA2131 error - critical method in a type participating in equivalence
2424
[SecurityCritical]
2525
void CriticalMethod();
2626
}

docs/snippets/csharp/VS_Snippets_CodeAnalysis/fxcop.security.ca2136.transparencyannotationsshouldnotconflict/cs/ca2136-transparencyannotationsshouldnotconflict.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace TransparencyWarningsDemo
99
public class CriticalClass
1010
{
1111
// CA2136 violation - this method is not really safe critical, since the larger scoped type annotation
12-
// has precidence over the smaller scoped method annotation. This can be fixed by removing the
12+
// has precedence over the smaller scoped method annotation. This can be fixed by removing the
1313
// SecuritySafeCritical attribute on this method
1414
[SecuritySafeCritical]
1515
public void SafeCriticalMethod()

0 commit comments

Comments
 (0)