diff --git a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
index f5ca8e1448..edf68cf7c8 100644
--- a/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
+++ b/Emby.Server.Implementations/AppBase/BaseConfigurationManager.cs
@@ -351,7 +351,7 @@ namespace Emby.Server.Implementations.AppBase
}
///
- /// Event handler for when a named configuration got updates.
+ /// Event handler for when a named configuration has been updated.
///
/// The key of the configuration.
/// The old configuration.
diff --git a/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs b/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs
index 4def7ca40d..3d8d15d197 100644
--- a/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs
+++ b/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs
@@ -150,7 +150,7 @@ namespace Emby.Server.Implementations.Configuration
}
///
- /// Sets all config values to the optimal value.
+ /// Sets all configuration values to their optimal values.
///
/// If the configuration changed.
public bool SetOptimalValues()
diff --git a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
index 30f29beee4..0654132f41 100644
--- a/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
+++ b/Emby.Server.Implementations/Data/BaseSqliteRepository.cs
@@ -16,7 +16,7 @@ namespace Emby.Server.Implementations.Data
///
/// Initializes a new instance of the class.
///
- /// The ogger.
+ /// The logger.
protected BaseSqliteRepository(ILogger logger)
{
Logger = logger;
diff --git a/Emby.Server.Implementations/EntryPoints/RefreshUsersMetadata.cs b/Emby.Server.Implementations/EntryPoints/RefreshUsersMetadata.cs
index 1ca25ba6f3..f00996b5fe 100644
--- a/Emby.Server.Implementations/EntryPoints/RefreshUsersMetadata.cs
+++ b/Emby.Server.Implementations/EntryPoints/RefreshUsersMetadata.cs
@@ -18,7 +18,7 @@ namespace Emby.Server.Implementations.EntryPoints
private readonly ILogger _logger;
///
- /// The _user manager.
+ /// The user manager.
///
private readonly IUserManager _userManager;
diff --git a/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs b/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
index 9ccbf7535a..e1dbb663bc 100644
--- a/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
+++ b/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
@@ -21,22 +21,22 @@ namespace Emby.Server.Implementations.EntryPoints
public class ServerEventNotifier : IServerEntryPoint
{
///
- /// The _user manager.
+ /// The user manager.
///
private readonly IUserManager _userManager;
///
- /// The _installation manager.
+ /// The installation manager.
///
private readonly IInstallationManager _installationManager;
///
- /// The _kernel.
+ /// The kernel.
///
private readonly IServerApplicationHost _appHost;
///
- /// The _task manager.
+ /// The task manager.
///
private readonly ITaskManager _taskManager;
diff --git a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
index 9cef77dc87..161788c636 100644
--- a/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
+++ b/Emby.Server.Implementations/EntryPoints/StartupWizard.cs
@@ -13,12 +13,12 @@ namespace Emby.Server.Implementations.EntryPoints
public class StartupWizard : IServerEntryPoint
{
///
- /// The _app host.
+ /// The app host.
///
private readonly IServerApplicationHost _appHost;
///
- /// The _user manager.
+ /// The user manager.
///
private readonly ILogger _logger;
diff --git a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
index 24ac6d1fda..9ee219854d 100644
--- a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
+++ b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
@@ -20,7 +20,7 @@ namespace Emby.Server.Implementations.EntryPoints
public const int PortNumber = 7359;
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
private readonly ISocketFactory _socketFactory;
diff --git a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
index f9eb3a8979..a62b4e7aff 100644
--- a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
@@ -29,7 +29,7 @@ namespace Emby.Server.Implementations.HttpServer
public class HttpResultFactory : IHttpResultFactory
{
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
diff --git a/Emby.Server.Implementations/HttpServer/StreamWriter.cs b/Emby.Server.Implementations/HttpServer/StreamWriter.cs
index eda2360285..5afc51dbc3 100644
--- a/Emby.Server.Implementations/HttpServer/StreamWriter.cs
+++ b/Emby.Server.Implementations/HttpServer/StreamWriter.cs
@@ -15,7 +15,7 @@ namespace Emby.Server.Implementations.HttpServer
public class StreamWriter : IAsyncStreamWriter, IHasHeaders
{
///
- /// The _options.
+ /// The options.
///
private readonly IDictionary _options = new Dictionary();
diff --git a/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs b/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
index 5d657b8a7c..2292d86a4a 100644
--- a/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
+++ b/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
@@ -24,12 +24,12 @@ namespace Emby.Server.Implementations.HttpServer
private readonly ILogger _logger;
///
- /// The _json serializer.
+ /// The json serializer.
///
private readonly IJsonSerializer _jsonSerializer;
///
- /// The _socket.
+ /// The socket.
///
private readonly IWebSocket _socket;
@@ -78,7 +78,7 @@ namespace Emby.Server.Implementations.HttpServer
public event EventHandler Closed;
///
- /// Gets or sets the _remote end point.
+ /// Gets or sets the remote end point.
///
public string RemoteEndPoint { get; private set; }
diff --git a/Emby.Server.Implementations/Library/UserManager.cs b/Emby.Server.Implementations/Library/UserManager.cs
index 1233dcc43e..eaad05f92b 100644
--- a/Emby.Server.Implementations/Library/UserManager.cs
+++ b/Emby.Server.Implementations/Library/UserManager.cs
@@ -43,7 +43,7 @@ namespace Emby.Server.Implementations.Library
public class UserManager : IUserManager
{
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
diff --git a/Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs b/Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs
index dbadaeefbe..1497f4a3a7 100644
--- a/Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs
+++ b/Emby.Server.Implementations/Library/Validators/ArtistsValidator.cs
@@ -17,12 +17,12 @@ namespace Emby.Server.Implementations.Library.Validators
public class ArtistsValidator
{
///
- /// The _library manager.
+ /// The library manager.
///
private readonly ILibraryManager _libraryManager;
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
private readonly IItemRepository _itemRepo;
diff --git a/Emby.Server.Implementations/Library/Validators/GenresValidator.cs b/Emby.Server.Implementations/Library/Validators/GenresValidator.cs
index 6478f1873e..b0cd5f87a7 100644
--- a/Emby.Server.Implementations/Library/Validators/GenresValidator.cs
+++ b/Emby.Server.Implementations/Library/Validators/GenresValidator.cs
@@ -13,13 +13,13 @@ namespace Emby.Server.Implementations.Library.Validators
public class GenresValidator
{
///
- /// The _library manager.
+ /// The library manager.
///
private readonly ILibraryManager _libraryManager;
private readonly IItemRepository _itemRepo;
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
diff --git a/Emby.Server.Implementations/Library/Validators/MusicGenresPostScanTask.cs b/Emby.Server.Implementations/Library/Validators/MusicGenresPostScanTask.cs
index 1b5c83f1eb..58549e9d76 100644
--- a/Emby.Server.Implementations/Library/Validators/MusicGenresPostScanTask.cs
+++ b/Emby.Server.Implementations/Library/Validators/MusicGenresPostScanTask.cs
@@ -13,7 +13,7 @@ namespace Emby.Server.Implementations.Library.Validators
public class MusicGenresPostScanTask : ILibraryPostScanTask
{
///
- /// The _library manager.
+ /// The library manager.
///
private readonly ILibraryManager _libraryManager;
private readonly ILogger _logger;
diff --git a/Emby.Server.Implementations/Library/Validators/MusicGenresValidator.cs b/Emby.Server.Implementations/Library/Validators/MusicGenresValidator.cs
index 23a28e9360..5ee4ca72ea 100644
--- a/Emby.Server.Implementations/Library/Validators/MusicGenresValidator.cs
+++ b/Emby.Server.Implementations/Library/Validators/MusicGenresValidator.cs
@@ -13,12 +13,12 @@ namespace Emby.Server.Implementations.Library.Validators
public class MusicGenresValidator
{
///
- /// The _library manager.
+ /// The library manager.
///
private readonly ILibraryManager _libraryManager;
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;
private readonly IItemRepository _itemRepo;
diff --git a/Emby.Server.Implementations/Library/Validators/StudiosValidator.cs b/Emby.Server.Implementations/Library/Validators/StudiosValidator.cs
index 887eef5c36..15e7a0dbb8 100644
--- a/Emby.Server.Implementations/Library/Validators/StudiosValidator.cs
+++ b/Emby.Server.Implementations/Library/Validators/StudiosValidator.cs
@@ -15,14 +15,14 @@ namespace Emby.Server.Implementations.Library.Validators
public class StudiosValidator
{
///
- /// The _library manager.
+ /// The library manager.
///
private readonly ILibraryManager _libraryManager;
private readonly IItemRepository _itemRepo;
///
- /// The _logger.
+ /// The logger.
///
private readonly ILogger _logger;