aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-12-19 22:01:05 +0100
committerGitHub <noreply@github.com>2019-12-19 22:01:05 +0100
commit137db45fc7a91d75d81023709b77277f34958ff0 (patch)
treed9a1c067f635c21469c3f6ce9c6a66ac88b47fe2 /MediaBrowser.Common
parent2ef4ffd698fb4ae95754f76238e52cfb6162db24 (diff)
Apply suggestions from code review
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
Diffstat (limited to 'MediaBrowser.Common')
-rw-r--r--MediaBrowser.Common/Hex.cs2
-rw-r--r--MediaBrowser.Common/Plugins/BasePlugin.cs6
2 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Common/Hex.cs b/MediaBrowser.Common/Hex.cs
index 863192809..559109f74 100644
--- a/MediaBrowser.Common/Hex.cs
+++ b/MediaBrowser.Common/Hex.cs
@@ -14,7 +14,7 @@ namespace MediaBrowser.Common
internal const int LastHexSymbol = 0x66; // 102: f
/// <summary>
- /// Gets an map from an ASCII char to its hex value shifted,
+ /// Gets a map from an ASCII char to its hex value shifted,
/// e.g. <c>b</c> -> 11. 0xFF means it's not a hex symbol.
/// </summary>
internal static ReadOnlySpan<byte> HexLookup => new byte[]
diff --git a/MediaBrowser.Common/Plugins/BasePlugin.cs b/MediaBrowser.Common/Plugins/BasePlugin.cs
index 25519ccc0..b24d10ff1 100644
--- a/MediaBrowser.Common/Plugins/BasePlugin.cs
+++ b/MediaBrowser.Common/Plugins/BasePlugin.cs
@@ -96,19 +96,19 @@ namespace MediaBrowser.Common.Plugins
where TConfigurationType : BasePluginConfiguration
{
/// <summary>
- /// The _configuration sync lock.
+ /// The configuration sync lock.
/// </summary>
private readonly object _configurationSyncLock = new object();
/// <summary>
- /// The _save lock.
+ /// The save lock.
/// </summary>
private readonly object _configurationSaveLock = new object();
private Action<string> _directoryCreateFn;
/// <summary>
- /// The _configuration.
+ /// The configuration.
/// </summary>
private TConfigurationType _configuration;