Skip to content

Commit

Permalink
Resolve circular reference in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
CXuesong committed Nov 16, 2019
1 parent ff88f76 commit add10a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ public static IDisposable BeginActionScope(this ILogger logger, object target, I
return logger.BeginScope(new ActionLogScopeState(target, actionName, parameters));
}

/// <inheritdoc cref="BeginActionScope(IWikiClientLoggable,object,IEnumerable,string)"/>
/// <inheritdoc cref="BeginActionScope(ILogger,object,IEnumerable,string)"/>
/// <param name="loggable">The loggable object whose logger will enter a new scope.</param>
public static IDisposable BeginActionScope(this IWikiClientLoggable loggable, object target, [CallerMemberName] string actionName = null)
{
if (loggable == null) throw new ArgumentNullException(nameof(loggable));
Expand Down
2 changes: 1 addition & 1 deletion WikiClientLibrary/Scribunto/ScribuntoWikiSiteExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static Task<T> ScribuntoLoadDataAsync<T>(this WikiSite site, string modul
/// <a href="https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.loadData"><c>mw.loadData</c></a>,
/// it works as long as the imported module meets the requirement of <c>loadData</c> function.
/// </remarks>
/// <inheritdoc cref="ScribuntoLoadDataAsync{T}(WikiSite,string,JsonSerializer,CancellationToken)"/>
/// <inheritdoc cref="ScribuntoLoadDataAsync{T}(WikiSite,string,string,JsonSerializer,CancellationToken)"/>
public static Task<T> ScribuntoLoadDataAsync<T>(this WikiSite site, string moduleName,
JsonSerializer serializer, CancellationToken cancellationToken)
{
Expand Down

0 comments on commit add10a5

Please sign in to comment.