Browse Source

Fix typos in examples

David Pedersen 2 years ago
parent
commit
bf3f7ec490
2 changed files with 2 additions and 2 deletions
  1. 1 1
      packages/liveview/examples/axum.rs
  2. 1 1
      packages/liveview/examples/salvo.rs

+ 1 - 1
packages/liveview/examples/axum.rs

@@ -28,7 +28,7 @@ async fn main() {
                     r#"
                     r#"
             <!DOCTYPE html>
             <!DOCTYPE html>
             <html>
             <html>
-                <head> <title>Dioxus LiveView with Warp</title>  </head>
+                <head> <title>Dioxus LiveView with axum</title>  </head>
                 <body> <div id="main"></div> </body>
                 <body> <div id="main"></div> </body>
                 {glue}
                 {glue}
             </html>
             </html>

+ 1 - 1
packages/liveview/examples/salvo.rs

@@ -41,7 +41,7 @@ fn index(_depot: &mut Depot, res: &mut Response) {
         r#"
         r#"
             <!DOCTYPE html>
             <!DOCTYPE html>
             <html>
             <html>
-                <head> <title>Dioxus LiveView with Warp</title>  </head>
+                <head> <title>Dioxus LiveView with Salvo</title>  </head>
                 <body> <div id="main"></div> </body>
                 <body> <div id="main"></div> </body>
                 {glue}
                 {glue}
             </html>
             </html>