1
0
Fork 0

[client+server] Fix typoes in comments

This commit is contained in:
Starbeamrainbowlabs 2017-07-29 20:41:41 +01:00
parent cedf749e3e
commit b673719b78
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ namespace Nibriboard.Client.Messages
{ {
/// <summary> /// <summary>
/// Represents a complaint (usually by the server) about something that the other party /// Represents a complaint (usually by the server) about something that the other party
/// has done that probably shouldn't have. /// has done that they probably shouldn't have.
/// </summary> /// </summary>
public class ErrorMessage : Message public class ErrorMessage : Message
{ {

View File

@ -6,7 +6,7 @@ class CursorSyncer
{ {
// The ripple link we should send the cursor updates down // The ripple link we should send the cursor updates down
this.rippleLink = inRippleLink; this.rippleLink = inRippleLink;
// The target frequency in fps at we should send sursor updates. // The target frequency in fps at we should send cursor updates.
this.cursorUpdateFrequency = syncFrequency; this.cursorUpdateFrequency = syncFrequency;
// Register ourselves to start sending cursor updates once the ripple // Register ourselves to start sending cursor updates once the ripple

View File

@ -151,7 +151,7 @@ namespace SBRL.Utilities
Left > otherRectangle.Right || Left > otherRectangle.Right ||
Right < otherRectangle.Left) Right < otherRectangle.Left)
return false; return false;
return true; return true;
} }