Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Fix Doc Comments #266

Merged
merged 2 commits into from
Oct 21, 2019
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
2 changes: 1 addition & 1 deletion src/LibLog/ILogProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace YourRootNamespace.Logging
{
/// <summary>
/// Represents a way to get a <see cref="ILog"/>
/// Represents a way to get a <see cref="Logger"/>
/// </summary>
#if LIBLOG_PROVIDERS_ONLY
internal
Expand Down
10 changes: 7 additions & 3 deletions src/LibLog/LogProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,19 @@ namespace YourRootNamespace.Logging
using global::System.Runtime.CompilerServices;
#endif

/// <summary>
/// Provides a mechanism to create instances of <see cref="ILog" /> objects.
/// </summary>
#if LIBLOG_EXCLUDE_CODE_COVERAGE
[ExcludeFromCodeCoverage]
#endif
#if LIBLOG_PROVIDERS_ONLY
/// <summary>
/// Provides a mechanism to set the <see cref="ILogProvider" />
/// and create instances of <see cref="ILog" /> objects.
/// </summary>
internal
#else
/// <summary>
/// Provides a mechanism to set the <see cref="ILogProvider" />.
/// </summary>
public
#endif
static class LogProvider
Expand Down