Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix links #12899

Merged
merged 1 commit into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Core/async.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Microsoft.FSharp.Control
///
/// <remarks>
/// This type has no members. Asynchronous computations are normally specified either by using an async expression
/// or the static methods in the <see cref="T:Microsoft.FSharp.Control.Async"/> type.
/// or the static methods in the <see cref="T:Microsoft.FSharp.Control.FSharpAsync`1"/> type.
///
/// See also <a href="https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/asynchronous-workflows">F# Language Guide - Async Workflows</a>.
/// </remarks>
Expand Down
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Core/map.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ type Map<[<EqualityConditionalOn>]'Key,[<EqualityConditionalOn;ComparisonConditi
interface IReadOnlyDictionary<'Key,'Value>
override Equals : obj -> bool

/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.Map`2"/>.</summary>
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Collections.FSharpMap`2"/>.</summary>
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
[<RequireQualifiedAccess>]
module Map =
Expand Down
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Core/result.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Microsoft.FSharp.Core

open Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicOperators

/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Core.Result`2"/>.</summary>
/// <summary>Contains operations for working with values of type <see cref="T:Microsoft.FSharp.Core.FSharpResult`2"/>.</summary>
///
/// <category>Choices and Results</category>
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
Expand Down
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Core/set.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ open System.Collections.Generic
open Microsoft.FSharp.Core
open Microsoft.FSharp.Collections

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