aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs
diff options
context:
space:
mode:
authortoofooboo <167498142+toofooboo@users.noreply.github.com>2024-04-19 20:45:51 +0800
committerGitHub <noreply@github.com>2024-04-19 09:45:51 -0300
commit9839cd56fbab2412742bf5e8643761aa5bc93e30 (patch)
tree7d1172fdc3b4e79db19688415ec898a30e1ce3b7 /src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs
parent99f46e22e2ba6c528dfdc9b3907d5a6acf2b1365 (diff)
chore: remove repetitive words (#6690)
Signed-off-by: toofooboo <cmaker@foxmail.com>
Diffstat (limited to 'src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs')
-rw-r--r--src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs b/src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs
index 5403c87c..79b5d743 100644
--- a/src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs
+++ b/src/Ryujinx.Common/Extensions/SequenceReaderExtensions.cs
@@ -44,7 +44,7 @@ namespace Ryujinx.Common.Extensions
/// <remarks>
/// DO NOT use <paramref name="copyDestinationIfRequiredDoNotUse"/> after calling this method, as it will only
/// contain a value if the value couldn't be referenced directly because it spans multiple <see cref="ReadOnlyMemory{Byte}"/> segments.
- /// To discourage use, it is recommended to to call this method like the following:
+ /// To discourage use, it is recommended to call this method like the following:
/// <c>
/// ref readonly MyStruct value = ref sequenceReader.GetRefOrRefToCopy{MyStruct}(out _);
/// </c>