Skip to content

Commit 20f4053

Browse files
authored
Adjust wiki-link-url (#1126)
1 parent 8bdc52d commit 20f4053

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/NLog.Web.AspNetCore/NLogBufferingTargetWrapperMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace NLog.Web
99
///
1010
/// Usage: app.UseMiddleware<NLogBufferingTargetWrapperMiddleware>(); where app is an IApplicationBuilder
1111
/// </summary>
12-
/// <seealso href="https://github.com/nlog/nlog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
12+
/// <seealso href="https://github.com/NLog/NLog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1313
public class NLogBufferingTargetWrapperMiddleware
1414
{
1515
private readonly RequestDelegate _next;

src/NLog.Web/NLogBufferingTargetWrapperModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace NLog.Web
77
/// <summary>
88
/// IIS Module to allow the <see cref="AspNetBufferingTargetWrapper"/> to function properly
99
/// </summary>
10-
/// <seealso href="https://github.com/nlog/nlog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
10+
/// <seealso href="https://github.com/NLog/NLog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1111
public class NLogBufferingTargetWrapperModule : IHttpModule
1212
{
1313
/// <summary>

src/NLog.Web/NLogHttpModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace NLog.Web
77
/// <summary>
88
/// ASP.NET HttpModule that enables NLog to hook BeginRequest and EndRequest events easily.
99
/// </summary>
10-
/// <seealso href="https://github.com/nlog/nlog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
10+
/// <seealso href="https://github.com/NLog/NLog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1111
[Obsolete("Replaced by NLogBufferingTargetWrapperModule for AspNetBufferingWrapper support. Marked obsolete with NLog 6.0")]
1212
public class NLogHttpModule : IHttpModule
1313
{

src/NLog.Web/Targets/AspNetTrace.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace NLog.Web.Targets
66
/// <summary>
77
/// Writes log messages to the ASP.NET trace.
88
/// </summary>
9-
/// <seealso href="https://github.com/nlog/nlog/wiki/AspNetTrace-target">Documentation on NLog Wiki</seealso>
9+
/// <seealso href="https://github.com/NLog/NLog/wiki/AspNetTrace-target">Documentation on NLog Wiki</seealso>
1010
/// <remarks>
1111
/// Log entries can then be viewed by navigating to http://server/path/Trace.axd.
1212
/// </remarks>
@@ -49,4 +49,4 @@ protected override void Write(LogEventInfo logEvent)
4949
}
5050
}
5151
}
52-
}
52+
}

src/Shared/Targets/Wrappers/AspNetBufferingTargetWrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace NLog.Web.Targets.Wrappers
1717
/// Buffers log events for the duration of ASP.NET request and sends them down
1818
/// to the wrapped target at the end of a request.
1919
/// </summary>
20-
/// <seealso href="https://github.com/nlog/nlog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
20+
/// <seealso href="https://github.com/NLog/NLog/wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
2121
/// <remarks>
2222
/// <p>
2323
/// Typically this target is used in cooperation with PostFilteringTargetWrapper
@@ -340,4 +340,4 @@ internal static void OnEndRequest(HttpContext context)
340340
}
341341
}
342342
}
343-
}
343+
}

0 commit comments

Comments
 (0)