Run spell check over solution.
This commit is contained in:
committed by
Matthias Mailänder
parent
ebf90970b2
commit
96de59f75a
@@ -149,7 +149,7 @@ namespace OpenRA.Graphics
|
||||
var buffer = data;
|
||||
ReleaseBuffer();
|
||||
|
||||
// We aren't commiting data to the GPU, so let's not delete our data.
|
||||
// We aren't committing data to the GPU, so let's not delete our data.
|
||||
if (Game.Renderer == null)
|
||||
return false;
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace OpenRA.Primitives
|
||||
{
|
||||
/// <summary>Fixed size rorating buffer backed by an array.</summary>
|
||||
/// <summary>Fixed size rotating buffer backed by an array.</summary>
|
||||
public class RingBuffer<T> : ICollection<T>, IEnumerable<T>
|
||||
{
|
||||
readonly IComparer<T> comparer;
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace OpenRA
|
||||
[Desc("Can players vote to kick other players?")]
|
||||
public bool EnableVoteKick = true;
|
||||
|
||||
[Desc("After how much time in miliseconds should the vote kick fail after idling?")]
|
||||
[Desc("After how much time in milliseconds should the vote kick fail after idling?")]
|
||||
public int VoteKickTimer = 30000;
|
||||
|
||||
[Desc("If a vote kick was unsuccessful for how long should the player who started the vote not be able to start new votes?")]
|
||||
|
||||
@@ -126,7 +126,7 @@ namespace OpenRA.Support
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Shuffle a portion of a list list in place. Has minor biases.
|
||||
/// Shuffle a portion of a list in place. Has minor biases.
|
||||
/// </summary>
|
||||
public void ShuffleInPlace<T>(IList<T> list, int start, int len)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user