소스 검색

a terrible typo!

jmelesky 7 년 전
부모
커밋
e05ca8941c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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() {