End comments with a period

This commit is contained in:
Ionut Andrei Oanca
2020-10-21 15:46:50 +02:00
parent 8819a9d478
commit 93cbf64f88
9 changed files with 142 additions and 142 deletions

View File

@@ -35,7 +35,7 @@ namespace MediaBrowser.Controller.SyncPlay
/// <param name="cancellationToken">The cancellation token.</param>
protected void SendGroupStateUpdate(ISyncPlayStateContext context, IPlaybackGroupRequest reason, SessionInfo session, CancellationToken cancellationToken)
{
// Notify relevant state change event
// Notify relevant state change event.
var stateUpdate = new GroupStateUpdate()
{
State = GetGroupState(),
@@ -200,7 +200,7 @@ namespace MediaBrowser.Controller.SyncPlay
/// <inheritdoc />
public virtual void HandleRequest(ISyncPlayStateContext context, GroupState prevState, PingGroupRequest request, SessionInfo session, CancellationToken cancellationToken)
{
// Collected pings are used to account for network latency when unpausing playback
// Collected pings are used to account for network latency when unpausing playback.
context.UpdatePing(session, request.Ping);
}