Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlastair Donaldson <alastair.donaldson@imperial.ac.uk>2021-04-02 11:59:35 +0300
committerGitHub <noreply@github.com>2021-04-02 11:59:35 +0300
commit212895d4c2cd9f4900adba4514aa5ea2c8256f9f (patch)
tree6f13ca20390750fa9e5f25ec1e7d7a3b045893e6 /docs
parent48007a5c7f7cc671b391bebd46e87fd6edc6c24b (diff)
Typo fix (#4225)
Diffstat (limited to 'docs')
-rw-r--r--docs/spirv-fuzz.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/spirv-fuzz.md b/docs/spirv-fuzz.md
index e5439e3cb..5716b35ea 100644
--- a/docs/spirv-fuzz.md
+++ b/docs/spirv-fuzz.md
@@ -53,7 +53,7 @@ See `transformation_set_selection_control.h` for an example.
The `IsApplicable` method should have a comment in the header file describing the conditions for applicability in simple terms. These conditions should be implemented in the body of this method in the `.cpp` file.
-In the case of `TransformationSetSelectionControl`, `IsApplicable` involves checking that `block_id` is indeed the id of a block that has an `OpSelectoinMerge` instruction, and that `selection_control` is a valid selection mask.
+In the case of `TransformationSetSelectionControl`, `IsApplicable` involves checking that `block_id` is indeed the id of a block that has an `OpSelectionMerge` instruction, and that `selection_control` is a valid selection mask.
The `Apply` method should have a comment in the header file summarising the result of applying the transformation. It should be implemented in the `.cpp` file, and you should assume that `IsApplicable` holds whenever `Apply` is invoked.