Skip to content

Commit

Permalink
fix links (#12899)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyme committed Mar 30, 2022
1 parent c5c1e20 commit e907eaa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit e907eaa

Please sign in to comment.