Skip to content
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
4 changes: 2 additions & 2 deletions src/EventBuilder/Platforms/Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ namespace EventBuilder.Platforms
/// <summary>
/// The Android platform.
/// </summary>
/// <seealso cref="T:EventBuilder.Platforms.BasePlatform" />
/// <seealso cref="BasePlatform" />
public class Android : BasePlatform
{
/// <summary>
/// Initializes a new instance of the <see cref="T:EventBuilder.Platforms.Android" /> class.
/// Initializes a new instance of the <see cref="Android" /> class.
/// </summary>
/// <param name="referenceAssembliesLocation">The reference assemblies location.</param>
public Android(string referenceAssembliesLocation)
Expand Down
2 changes: 1 addition & 1 deletion src/EventBuilder/Platforms/Bespoke.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace EventBuilder.Platforms
/// <summary>
/// The Bespoke platform.
/// </summary>
/// <seealso cref="T:EventBuilder.Platforms.BasePlatform" />
/// <seealso cref="BasePlatform" />
public class Bespoke : BasePlatform
{
/// <inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions src/EventBuilder/Platforms/iOS.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand All @@ -11,7 +11,7 @@ namespace EventBuilder.Platforms
/// <summary>
/// iOS platform assemblies and events.
/// </summary>
/// <seealso cref="T:EventBuilder.Platforms.BasePlatform" />
/// <seealso cref="BasePlatform" />
// ReSharper disable once InconsistentNaming
public class iOS : BasePlatform
{
Expand Down