Merge pull request #9134 from clemty/docs

minor LUA and trait documentation fixes, whitespace fixes
This commit is contained in:
reaperrr
2015-08-24 21:26:20 +02:00
28 changed files with 51 additions and 51 deletions

View File

@@ -155,7 +155,7 @@ namespace OpenRA
// Helper functions
public static class CellLayer
{
/// <summary>Create a new layer by resizing another layer. New cells are filled with defaultValue.</summary>
/// <summary>Create a new layer by resizing another layer. New cells are filled with defaultValue.</summary>
public static CellLayer<T> Resize<T>(CellLayer<T> layer, Size newSize, T defaultValue)
{
var result = new CellLayer<T>(layer.Shape, newSize);