Skip to content

Commit

Permalink
Fix IcedTask namespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd committed Nov 10, 2023
1 parent 9b224fe commit a26f22e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/FsAutoComplete.Core/AdaptiveExtensions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module AdaptiveExtensions =
/// <summary>
/// Adds the given key and calls the adder function if no previous key exists.
/// Otherwise calls updater with the current key/value but does not override existing value in the map.
/// This is useful when the 'Value is itself a changeable value like a cval, aset, amap which should be changed
/// This is useful when the 'Value is itself a changeable value like a cval, cset, cmap which should be changed
/// but the parent container doesn't need to know about those changes itself.
/// </summary>
member x.AddOrElse(key, adder, updater) =
Expand Down Expand Up @@ -419,7 +419,7 @@ module Async =
[<AutoOpenAttribute>]
module Extensions =

type IcedTasks.CancellableTasks.CancellableTaskBuilderBase with
type IcedTasks.CancellableTaskBase.CancellableTaskBuilderBase with

/// <summary>Allows implicit conversion of a AdaptiveCancellableTask to a CancellableTask in a cancellableTask CE.</summary>
member inline x.Source(ct: AdaptiveCancellableTask<_>) =
Expand Down
4 changes: 2 additions & 2 deletions src/FsAutoComplete.Core/AdaptiveExtensions.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module AdaptiveExtensions =
/// <summary>
/// Adds the given key and calls the adder function if no previous key exists.
/// Otherwise calls updater with the current key/value but does not override existing value in the map.
/// This is useful when the 'Value is itself a changeable value like a cval, aset, amap which should be changed
/// This is useful when the 'Value is itself a changeable value like a cval, cset, cmap which should be changed
/// but the parent container doesn't need to know about those changes itself.
/// </summary>
member AddOrElse: key: 'Key * adder: ('Key -> 'Value) * updater: ('Key -> 'Value -> unit) -> unit
Expand Down Expand Up @@ -191,7 +191,7 @@ module Async =

[<AutoOpen>]
module Extensions =
type IcedTasks.CancellableTasks.CancellableTaskBuilderBase with
type IcedTasks.CancellableTaskBase.CancellableTaskBuilderBase with

/// <summary>Allows implicit conversion of a AdaptiveCancellableTask to a CancellableTask in a cancellableTask CE.</summary>
member inline Source:
Expand Down

0 comments on commit a26f22e

Please sign in to comment.