From 342e73f90fc5c41af8db3a6e3dfdf1746f7f5bc4 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 24 Sep 2018 18:46:51 +0200 Subject: Spelling fixes in comments and descriptions (2.8 changes), patch by luzpaz. Differential Revision: https://developer.blender.org/D3719 --- source/blender/gpu/intern/gpu_uniformbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/gpu/intern/gpu_uniformbuffer.c') diff --git a/source/blender/gpu/intern/gpu_uniformbuffer.c b/source/blender/gpu/intern/gpu_uniformbuffer.c index 82b82d622a4..9bc3727bb03 100644 --- a/source/blender/gpu/intern/gpu_uniformbuffer.c +++ b/source/blender/gpu/intern/gpu_uniformbuffer.c @@ -291,7 +291,7 @@ static void gpu_uniformbuffer_inputs_sort(ListBase *inputs) while (link != NULL && ((GPUInput *)link->data)->type == GPU_VEC3) { LinkData *link_next = link->next; - /* If GPU_VEC3 is followed by nothing or a GPU_FLOAT, no need for aligment. */ + /* If GPU_VEC3 is followed by nothing or a GPU_FLOAT, no need for alignment. */ if ((link_next == NULL) || ((GPUInput *)link_next->data)->type == GPU_FLOAT) { -- cgit v1.2.3