From 217ac884477add017d7638fbf0232f42f47260af Mon Sep 17 00:00:00 2001 From: iconsumeplutonium Date: Thu, 20 Aug 2026 17:39:09 -0700 Subject: [PATCH] minor spelling/grammar fix --- en/11_Compute_Shader.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/11_Compute_Shader.adoc b/en/11_Compute_Shader.adoc index 84ca031e3..e5e0266cc 100644 --- a/en/11_Compute_Shader.adoc +++ b/en/11_Compute_Shader.adoc @@ -267,8 +267,8 @@ std::vector shaderStorageBuffers; std::vector shaderStorageBuffersMemory; ---- -In the `createShaderStorageBuffers` we then clear those vectors to clean up -any objects already created in their as is our RAII practice. +In the `createShaderStorageBuffers` function, we then clear those vectors to clean up +any objects already created in there, as is our RAII practice. [,c++] ----