Skip to content

Commit be6a759

Browse files
authored
Merge pull request #12905 from dotnet/merges/main-to-release/dev17.2
Merge main to release/dev17.2
2 parents f53a0a6 + e907eaa commit be6a759

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/fsharp/FSharp.Core/async.fsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Microsoft.FSharp.Control
1717
///
1818
/// <remarks>
1919
/// This type has no members. Asynchronous computations are normally specified either by using an async expression
20-
/// or the static methods in the <see cref="T:Microsoft.FSharp.Control.Async"/> type.
20+
/// or the static methods in the <see cref="T:Microsoft.FSharp.Control.FSharpAsync`1"/> type.
2121
///
2222
/// See also <a href="https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/asynchronous-workflows">F# Language Guide - Async Workflows</a>.
2323
/// </remarks>

src/fsharp/FSharp.Core/map.fsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ type Map<[<EqualityConditionalOn>]'Key,[<EqualityConditionalOn;ComparisonConditi
215215
interface IReadOnlyDictionary<'Key,'Value>
216216
override Equals : obj -> bool
217217

218-
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.Map`2"/>.</summary>
218+
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.FSharpMap`2"/>.</summary>
219219
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
220220
[<RequireQualifiedAccess>]
221221
module Map =

src/fsharp/FSharp.Core/result.fsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Microsoft.FSharp.Core
44

55
open Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicOperators
66

7-
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Core.Result`2"/>.</summary>
7+
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Core.FSharpResult`2"/>.</summary>
88
///
99
/// <category>Choices and Results</category>
1010
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]

src/fsharp/FSharp.Core/set.fsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ open System.Collections.Generic
239239
open Microsoft.FSharp.Core
240240
open Microsoft.FSharp.Collections
241241

242-
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.Set`1"/>.</summary>
242+
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.FSharpSet`1"/>.</summary>
243243
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
244244
[<RequireQualifiedAccess>]
245245
module Set =

0 commit comments

Comments
 (0)