From 3a13a0c71b688a84e78fcfbdab0259e2c53f2be3 Mon Sep 17 00:00:00 2001
From: John Kessenich <cepheus@frii.com>
Date: Wed, 20 May 2015 16:13:01 +0000
Subject: [PATCH] Correct some English spellings of SPIR-V.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31237 e7fa87d3-cd2b-0410-9028-fcbf551c1848
---
 README-spirv-remap.txt | 8 ++++----
 SPIRV/SPVRemapper.h    | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README-spirv-remap.txt b/README-spirv-remap.txt
index 691c3120e..a67771c5f 100644
--- a/README-spirv-remap.txt
+++ b/README-spirv-remap.txt
@@ -5,9 +5,9 @@ spirv-remap 0.97
 
 INTRO:
 --------------------------------------------------------------------------------
-spirv-remap is a utility to improve compression of SPIRV binary files via
+spirv-remap is a utility to improve compression of SPIR-V binary files via
 entropy reduction, plus optional stripping of debug information and
-load/store optimization.  It transforms SPIRV to SPIRV, remapping IDs.  The
+load/store optimization.  It transforms SPIR-V to SPIR-V, remapping IDs.  The
 resulting modules have an increased ID range (IDs are not as tightly packed
 around zero), but will compress better when multiple modules are compressed
 together, since compressor's dictionary can find better cross module
@@ -87,10 +87,10 @@ public:
 
 The class definition is in SPVRemapper.cpp.
 
-remap() accepts an std::vector of SPIRV words, modifies them per the
+remap() accepts an std::vector of SPIR-V words, modifies them per the
 request given in 'opts', and leaves the 'spv' container with the result.
 It is safe to instantiate one spirvbin_t per thread and process a different
-SPIRV in each.
+SPIR-V in each.
 
 The "opts" parameter to remap() accepts a bit mask of desired remapping
 options.  See REMAPPING AND OPTIMIZATION OPTIONS.
diff --git a/SPIRV/SPVRemapper.h b/SPIRV/SPVRemapper.h
index dc4126481..edaa7dfd0 100644
--- a/SPIRV/SPVRemapper.h
+++ b/SPIRV/SPVRemapper.h
@@ -105,7 +105,7 @@ public:
 
 namespace spv {
 
-// class to hold SPIRV binary data for remapping, DCE, and debug stripping
+// class to hold SPIR-V binary data for remapping, DCE, and debug stripping
 class spirvbin_t : public spirvbin_base_t
 {
 public:
-- 
GitLab