aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/RangeList.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-12-31 01:46:57 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit430faeb8ef9a5906af642a4a2be0eb6e878f812e (patch)
tree53efdfb178ccdc663cd7fae2de0a8e8c2e1e5e6e /Ryujinx.Graphics.Gpu/Memory/RangeList.cs
parente58b540c4e2a8df460e0e357e3f341842dd59a71 (diff)
Add XML documentation to Ryujinx.Graphics.Gpu.Shader
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/RangeList.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Memory/RangeList.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/RangeList.cs b/Ryujinx.Graphics.Gpu/Memory/RangeList.cs
index 52bcf9b4..1d185e21 100644
--- a/Ryujinx.Graphics.Gpu/Memory/RangeList.cs
+++ b/Ryujinx.Graphics.Gpu/Memory/RangeList.cs
@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.Graphics.Gpu.Memory
{
/// <summary>
- /// Lists of GPU resources with data on guest memory.
+ /// List of GPU resources with data on guest memory.
/// </summary>
/// <typeparam name="T">Type of the GPU resource</typeparam>
class RangeList<T> where T : IRange<T>