Skip to content

Commit c87fc66

Browse files
authored
docs: fix duplicate 'the' in texture tutorial (dotnet#2530)
1 parent 85acbf2 commit c87fc66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/opengl/c1/3-hello-texture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If we try to run our program now...
6060
![A really messed up quad!](/images/opengl/chapter1/lesson3/messed-up-quad.png)
6161

6262
Well, that doesn't look like the quad we were expecting. This is because we have updated the vertex buffer we're passing to the vertex shader,
63-
but haven't updated anything else such as our vertex layout definition. Luckily, it's very easy to modify the the example vertex layout
63+
but haven't updated anything else such as our vertex layout definition. Luckily, it's very easy to modify the example vertex layout
6464
shown in the previous tutorial to work with our new texture coordinates.
6565

6666
In our `VertexAttribPointer` calls, we declared an `aPosition` attribute with a size of 3 floats and a stride of 12 bytes (`3 * sizeof(float)` equals 12).

0 commit comments

Comments
 (0)