Module: wine
Branch: master
Commit: f98d0764d5489cf1152af79a92a89dd07e337d7f
URL: https://source.winehq.org/git/wine.git/?a=commit;h=f98d0764d5489cf1152af79a…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Mar 15 18:12:08 2018 +0100
winevulkan: Fix some typos in comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Józef Kucia <jkucia(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winevulkan/make_vulkan | 2 +-
dlls/winevulkan/vulkan.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
index 579c38a..35524f2 100755
--- a/dlls/winevulkan/make_vulkan
+++ b/dlls/winevulkan/make_vulkan
@@ -464,7 +464,7 @@ class VkFunction(object):
else:
proto += " {0}(".format(self.name)
- # Add all the paremeters.
+ # Add all the parameters.
proto += ", ".join([p.definition() for p in self.params])
if postfix is not None:
diff --git a/dlls/winevulkan/vulkan.c b/dlls/winevulkan/vulkan.c
index b9326ba..41a45ef 100644
--- a/dlls/winevulkan/vulkan.c
+++ b/dlls/winevulkan/vulkan.c
@@ -153,7 +153,7 @@ static VkResult wine_vk_instance_convert_create_info(const VkInstanceCreateInfo
dst->pApplicationInfo = src->pApplicationInfo;
/* Application and loader can pass in a chain of extensions through pNext.
- * We can't blindy pass these through as often these contain callbacks or
+ * We can't blindly pass these through as often these contain callbacks or
* they can even be pass structures for loader / ICD internal use. For now
* we ignore everything in pNext chain, but we print FIXMEs.
*/
@@ -1011,7 +1011,7 @@ void * WINAPI wine_vk_icdGetInstanceProcAddr(VkInstance instance, const char *na
TRACE("%p %s\n", instance, debugstr_a(name));
/* Initial version of the Vulkan ICD spec required vkGetInstanceProcAddr to be
- * exported. vk_icdGetInstanceProcAddr was added later to separete ICD calls from
+ * exported. vk_icdGetInstanceProcAddr was added later to separate ICD calls from
* Vulkan API. One of them in our case should forward to the other, so just forward
* to the older vkGetInstanceProcAddr.
*/