소스 검색

chore: add the missing in comment (#2978)

Signed-off-by: jingchanglu <jingchanglu@outlook.com>
荆长逯 9 달 전
부모
커밋
76ad23c822
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/login_form.rs

+ 1 - 1
examples/login_form.rs

@@ -2,7 +2,7 @@
 //!
 //! This example demonstrates how to implement a login form using Dioxus desktop. Since forms typically navigate the
 //! page on submit, we need to intercept the onsubmit event and send a request to a server. On the web, we could
-//! just leave the submit action` as is, but on desktop, we need to handle the form submission ourselves.
+//! just leave the `submit action` as is, but on desktop, we need to handle the form submission ourselves.
 //!
 //! Todo: actually spin up a server and run the login flow. Login is way more complex than a form override :)