aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-02-06 13:03:02 +0100
committerGitHub <noreply@github.com>2020-02-06 13:03:02 +0100
commit3fe84c3213b8340f86aec0c5c488f7fc303b26cc (patch)
tree56c6c5cd1e03cca4db3b0368af9ea0426628cefb
parent70bc03c79571f70c2a6281b99554638f76f461c9 (diff)
Apply suggestions from code review
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index f5bd51c4a..56dd36107 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -102,17 +102,17 @@ namespace Emby.Server.Implementations.Session
public event EventHandler<GenericEventArgs<AuthenticationResult>> AuthenticationSucceeded;
/// <summary>
- /// Occurs when [playback start].
+ /// Occurs when playback has started.
/// </summary>
public event EventHandler<PlaybackProgressEventArgs> PlaybackStart;
/// <summary>
- /// Occurs when [playback progress].
+ /// Occurs when playback has progressed.
/// </summary>
public event EventHandler<PlaybackProgressEventArgs> PlaybackProgress;
/// <summary>
- /// Occurs when [playback stopped].
+ /// Occurs when playback has stopped.
/// </summary>
public event EventHandler<PlaybackStopEventArgs> PlaybackStopped;