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

github.com/KhronosGroup/Vulkan-Loader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gfrerer <tgfrerer@users.noreply.github.com>2022-05-31 12:19:05 +0300
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2022-05-31 22:39:58 +0300
commit8289053993972e23019eeef59574ed2bc373b62e (patch)
treed5e2fb548052a4a8e59ac2d4445e816accdb6914
parent9308d2f8f1d483555c8f9c4012c7d8a499e878a6 (diff)
fix typo
resulsts -> results
-rw-r--r--docs/LoaderApplicationInterface.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LoaderApplicationInterface.md b/docs/LoaderApplicationInterface.md
index de5003787..c9af0343a 100644
--- a/docs/LoaderApplicationInterface.md
+++ b/docs/LoaderApplicationInterface.md
@@ -121,7 +121,7 @@ should set up its own dispatch table for every Vulkan API entry-point.
For every instance-level Vulkan command in the dispatch table, the function pointer
should be queried and filled in by using the results of `vkGetInstanceProcAddr`.
Additionally, for every device-level Vulkan command, the function pointer
-should be queried and filled in using the resulsts of `vkGetDeviceProcAddr`.
+should be queried and filled in using the results of `vkGetDeviceProcAddr`.
*Why do this?*