From 5517c848bdf18df758466c0c6c8b7389f9df558a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Sep 2022 11:57:20 +1000 Subject: Cleanup: spelling in comments --- source/blender/compositor/operations/COM_BrightnessOperation.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/operations/COM_BrightnessOperation.cc b/source/blender/compositor/operations/COM_BrightnessOperation.cc index 764d5d64046..07d8035e615 100644 --- a/source/blender/compositor/operations/COM_BrightnessOperation.cc +++ b/source/blender/compositor/operations/COM_BrightnessOperation.cc @@ -47,7 +47,7 @@ void BrightnessOperation::execute_pixel_sampled(float output[4], /* * The algorithm is by Werner D. Streidt * (http://visca.com/ffactory/archives/5-99/msg00021.html) - * Extracted of OpenCV demhist.c + * Extracted of OpenCV `demhist.c`. */ if (contrast > 0) { a = 1.0f - delta * 2.0f; @@ -84,7 +84,7 @@ void BrightnessOperation::update_memory_buffer_partial(MemoryBuffer *output, /* * The algorithm is by Werner D. Streidt * (http://visca.com/ffactory/archives/5-99/msg00021.html) - * Extracted of OpenCV demhist.c + * Extracted of OpenCV `demhist.c`. */ float a, b; if (contrast > 0) { -- cgit v1.2.3