소스 검색

refactor(core): fix typo in event.rs (#2126)

recieved -> received
Ikko Ashimine 4 년 전
부모
커밋
8f16c1df7e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/tauri/src/endpoints/event.rs

+ 1 - 1
core/tauri/src/endpoints/event.rs

@@ -48,7 +48,7 @@ impl Cmd {
 
         let window_label: Option<P::Label> = window_label.map(|l| {
           l.parse()
-            .unwrap_or_else(|_| panic!("Event module recieved unhandled window: {}", l))
+            .unwrap_or_else(|_| panic!("Event module received unhandled window: {}", l))
         });
 
         // dispatch the event to Rust listeners