From 14c2bc53c0b4e02ac64c91908ba92d156c52023e Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Sun, 17 May 2015 18:32:31 +0200 Subject: [PATCH] Cleanup: Typos, typos everywhere. :D --- intern/cycles/device/device_opencl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/intern/cycles/device/device_opencl.cpp b/intern/cycles/device/device_opencl.cpp index e329ee495c2..5c480d98711 100644 --- a/intern/cycles/device/device_opencl.cpp +++ b/intern/cycles/device/device_opencl.cpp @@ -3338,14 +3338,14 @@ Device *device_opencl_create(DeviceInfo& info, Stats &stats, bool background) return new OpenCLDeviceSplitKernel(info, stats, background); } else { /* For any other device, take megakernel path. */ - VLOG(1) << "Using megekernel"; + VLOG(1) << "Using mega kernel"; return new OpenCLDeviceMegaKernel(info, stats, background); } } else { /* If we can't retrieve platform and device type information for some * reason, we default to megakernel path. */ - VLOG(1) << "Failed to rertieve platform or device, using megakernel"; + VLOG(1) << "Failed to retrieve platform or device, using mega kernel"; return new OpenCLDeviceMegaKernel(info, stats, background); } }