Skip to content

Commit 42b1a1e

Browse files
committed
Merge branch 'master' into live
2 parents 1510984 + b8a7fa5 commit 42b1a1e

File tree

19 files changed

+1042
-10
lines changed

19 files changed

+1042
-10
lines changed

docfx.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
"docs/csharp/**/**.yml": "dotnet-csharp",
110110
"docs/framework/**/**.md": "dotnet-framework",
111111
"docs/fsharp/**/**.md": "dotnet-fsharp",
112+
"docs/machine-learning/**/**.md": "dotnet-ml",
112113
"docs/standard/**/**.md": "dotnet",
113114
"docs/visual-basic/**/**.md": "dotnet-visualbasic"
114115
},
@@ -134,7 +135,8 @@
134135
"docs/csharp/**/**.md": "billwagner",
135136
"docs/csharp/**/**.yml": "billwagner",
136137
"docs/framework/data/adonet/**/**.md": "douglaslMS",
137-
"docs/fsharp/**/**.md": "cartermp"
138+
"docs/fsharp/**/**.md": "cartermp",
139+
"docs/machine-learning/**/**.md": "JRAlexander"
138140
},
139141
"ms.author": {
140142
"_csharplang/spec/*.md": "wiwagn",
@@ -143,7 +145,8 @@
143145
"docs/csharp/**/**.md": "wiwagn",
144146
"docs/csharp/**/**.yml": "wiwagn",
145147
"docs/framework/data/adonet/**/**.md": "douglasl",
146-
"docs/fsharp/**/**.md": "phcart"
148+
"docs/fsharp/**/**.md": "phcart",
149+
"docs/machine-learning/**/**.md": "johalex"
147150
},
148151
"manager": {
149152
"docs/framework/data/adonet/**/**.md": "craigg"

docs/csharp/language-reference/keywords/codesnippet/CSharp/event_1.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ public class Publisher
1414

1515
// Wrap the event in a protected virtual method
1616
// to enable derived classes to raise the event.
17-
protected virtual void OnRaiseSampleEvent()
18-
{
19-
// Raise the event by using the () operator.
20-
SampleEvent?.Invoke(this, new SampleEventArgs("Hello"));
17+
protected virtual void OnRaiseSampleEvent()
18+
{
19+
// Raise the event by using the () operator.
20+
SampleEvent?.Invoke(this, new SampleEventArgs("Hello"));
21+
}
2122
}

docs/framework/reflection-and-codedom/emitting-dynamic-methods-and-assemblies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Describes security issues related to creating dynamic assemblies using reflectio
4040
Shows how to execute a simple dynamic method and a dynamic method bound to an instance of a class.
4141

4242
[How to: Define a generic type with reflection emit](how-to-define-a-generic-type-with-reflection-emit.md)
43-
Shows how to create a simple generic type with two type parameters, how to apply class, interface, and special constraints to the type parameters, and how to create memers that use the type parameters of the class as parameter types and return types.
43+
Shows how to create a simple generic type with two type parameters, how to apply class, interface, and special constraints to the type parameters, and how to create members that use the type parameters of the class as parameter types and return types.
4444

4545
[How to: Define a generic method with reflection emit](how-to-define-a-generic-method-with-reflection-emit.md)
4646
Shows how to create, emit, and invoke a simple generic method.

docs/fsharp/language-reference/keyword-reference.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ The following tokens are reserved as keywords for future expansion of the F# lan
109109
* `eager`
110110
* `event`
111111
* `external`
112-
* `fixed`
113112
* `functor`
114113
* `include`
115114
* `method`

docs/images/hub/mldotnet.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/images/hub/swimlane-azure-machine-learning.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)