Skip to content

Commit

Permalink
Address PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisInSky committed Oct 28, 2024
1 parent c4e44d0 commit b96ba43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/src/Sails.Remoting.Abstractions/IRemotingProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ public interface IRemotingProvider
/// </summary>
/// <param name="signingAccount"></param>
/// <returns></returns>
IRemoting GetRemoting(Account signingAccount);
IRemoting CreateRemoting(Account signingAccount);
}
2 changes: 1 addition & 1 deletion net/src/Sails.Remoting/RemotingProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public RemotingProvider(Func<Account, IRemoting> remotingFactory)
private readonly Func<Account, IRemoting> remotingFactory;

/// <inheritdoc/>
public IRemoting GetRemoting(Account signingAccount)
public IRemoting CreateRemoting(Account signingAccount)
{
EnsureArg.IsNotNull(signingAccount, nameof(signingAccount));

Expand Down

0 comments on commit b96ba43

Please sign in to comment.