Fix some spelling mistakes

Thanks to LDj3SNuD for spotting these
This commit is contained in:
gdkchan 2020-01-01 20:14:18 -03:00 committed by Thog
parent 23d8516763
commit a11f6f5235
14 changed files with 29 additions and 29 deletions

View file

@ -6,7 +6,7 @@ namespace Ryujinx.Graphics.Gpu.Image
/// <summary>
/// Represents a pool of GPU resources, such as samplers or textures.
/// </summary>
/// <typeparam name="T">GPU resource type</typeparam>
/// <typeparam name="T">Type of the GPU resource</typeparam>
abstract class Pool<T> : IDisposable
{
protected const int DescriptorSize = 0x20;
@ -57,7 +57,7 @@ namespace Ryujinx.Graphics.Gpu.Image
/// <summary>
/// Synchronizes host memory with guest memory.
/// This causes a invalidation of pool entries,
/// This causes invalidation of pool entries,
/// if a modification of entries by the CPU is detected.
/// </summary>
public void SynchronizeMemory()