From 2b92c10105c8c7fcae3ab39d473f640c846a24ce Mon Sep 17 00:00:00 2001
From: EmulationFanatic <62343878+EmulationFanatic@users.noreply.github.com>
Date: Tue, 16 Mar 2021 17:11:50 -0600
Subject: [PATCH] Fix typos (#2109)

---
 Ryujinx.Graphics.OpenGL/Image/TextureView.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureView.cs b/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
index 053fb3c248..8bc75efbdf 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
+++ b/Ryujinx.Graphics.OpenGL/Image/TextureView.cs
@@ -102,9 +102,9 @@ namespace Ryujinx.Graphics.OpenGL.Image
 
         public int GetIncompatibleFormatViewHandle()
         {
-            // AMD and Intel has a bug where the view format is always ignored,
-            // it uses the parent format instead.
-            // As workaround we create a new texture with the correct
+            // AMD and Intel have a bug where the view format is always ignored;
+            // they use the parent format instead.
+            // As a workaround we create a new texture with the correct
             // format, and then do a copy after the draw.
             if (_parent.Info.Format != Format)
             {