Explorar el Código

a terrible typo!

jmelesky hace 7 años
padre
commit
e05ca8941c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lesson02/src/main.rs

+ 1 - 1
lesson02/src/main.rs

@@ -30,7 +30,7 @@ fn init() -> Canvas<Window> {
         Err(err)  => panic!("Could not gain access to the SDL2 video subsystem. Error: {}", err),
     };
 
-    let window = match video.window("SDL Tutorial, lesson 01", WIDTH, HEIGHT)
+    let window = match video.window("SDL Tutorial, lesson 02", WIDTH, HEIGHT)
         .position_centered()
         .opengl()
         .build() {