Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll committed Jun 30, 2019
1 parent 20cda48 commit 24ee6bd
Show file tree
Hide file tree
Showing 8 changed files with 169 additions and 141 deletions.
2 changes: 1 addition & 1 deletion src/Extensions/Extensions/TopographicalSortExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Rocket.Surgery.Extensions
{
/// <summary>
/// Class TopographicalSortExtensions.
/// TopographicalSortExtensions.
/// </summary>
/// TODO Edit XML Comment Template for TopographicalSortExtensions
public static class TopographicalSortExtensions
Expand Down
2 changes: 1 addition & 1 deletion src/Extensions/Reflection/Extensions/TypeInfoExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Rocket.Surgery.Reflection.Extensions
{
/// <summary>
/// Class TypeInfoExtensions.
/// TypeInfoExtensions.
/// </summary>
/// TODO Edit XML Comment Template for TypeInfoExtensions
public static class TypeInfoExtensions
Expand Down
117 changes: 64 additions & 53 deletions src/Linq.Extensions/AsyncLinqExtensions.cs

Large diffs are not rendered by default.

117 changes: 64 additions & 53 deletions src/Linq.Extensions/LinqExtensions.cs

Large diffs are not rendered by default.

57 changes: 30 additions & 27 deletions src/Reactive.Extensions/ObservableExtensions.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
<PackageReference Include="System.Reactive" />
<PackageReference Include="System.Reactive.Observable.Aliases" />
</ItemGroup>
</Project>
</Project>
2 changes: 1 addition & 1 deletion src/Task.Extensions/Rocket.Surgery.Task.Extensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>

</Project>
</Project>
11 changes: 7 additions & 4 deletions src/Task.Extensions/TaskExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
// ReSharper disable once CheckNamespace
namespace System.Threading.Tasks
{
/// <summary>
/// Class TaskExtensions.
/// </summary>
public static class TaskExtensions
{
/// <summary>
/// Continues the <see cref="Task"/> return on any scheduler context.
/// Continues the <see cref="Task" /> return on any scheduler context.
/// </summary>
/// <param name="task">The this.</param>
/// <returns></returns>
/// <returns>ConfiguredTaskAwaitable.</returns>
/// <exception cref="ArgumentNullException">this</exception>
public static ConfiguredTaskAwaitable ContinueOnAnyContext(this Task task)
{
Expand All @@ -23,11 +26,11 @@ public static ConfiguredTaskAwaitable ContinueOnAnyContext(this Task task)
}

/// <summary>
/// Continues the <see cref="Task"/> return on any scheduler context.
/// Continues the <see cref="Task" /> return on any scheduler context.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="task">The this.</param>
/// <returns></returns>
/// <returns>ConfiguredTaskAwaitable&lt;T&gt;.</returns>
/// <exception cref="ArgumentNullException">this</exception>
public static ConfiguredTaskAwaitable<T> ContinueOnAnyContext<T>(this Task<T> task)
{
Expand Down

0 comments on commit 24ee6bd

Please sign in to comment.