Explorar o código

Fixed type in tutorial 02

Clemens-Alexander Brust %!s(int64=11) %!d(string=hai) anos
pai
achega
bac2ec1fe1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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++) {