Cleanup: Spelling in comment

This commit is contained in:
Sergey Sharybin 2019-01-23 10:27:55 +01:00
parent 2e5663c2c6
commit baa5fe1bfc

@ -130,7 +130,7 @@ template <int element_size, int num_vertices>
class StackAllocatedBuffer {
public:
static PatchCoordBuffer* Create(int /*size*/) {
// TODO(sergey): Validate that requested dize is smaller than static
// TODO(sergey): Validate that requested size is smaller than static
// stack memory size.
return new StackAllocatedBuffer<element_size, num_vertices>();
}