Pārlūkot izejas kodu

Fixed type in tutorial 02

Clemens-Alexander Brust 11 gadi atpakaļ
vecāks
revīzija
bac2ec1fe1
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      core/tutorial/02_grayscale.md

+ 1 - 1
core/tutorial/02_grayscale.md

@@ -5,7 +5,7 @@ After reading your image from a file into memory, you may want to optimize its h
 ## Pattern for gray value transforms
 You can use the following pattern for your gray value transforms.
 
-``` c++
+```c++
 template <class P> void MyTransform(NICE::ImageT<P>& image)
 {
 	for(int x = 0; x < image.width(); x++) {