Forráskód Böngészése

Fix typo in RouterService struct's "registered_routes" field name

This was "registerd_routes", missing an "e".
Dave Rolsky 3 éve
szülő
commit
d367e0f89f
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      packages/router/src/service.rs

+ 2 - 2
packages/router/src/service.rs

@@ -10,7 +10,7 @@ use dioxus_core::ScopeId;
 pub struct RouterService {
     pub(crate) regen_route: Rc<dyn Fn(ScopeId)>,
     history: Rc<RefCell<BrowserHistory>>,
-    registerd_routes: RefCell<RouteSlot>,
+    registered_routes: RefCell<RouteSlot>,
     slots: Rc<RefCell<Vec<(ScopeId, String)>>>,
     root_found: Rc<Cell<bool>>,
     cur_root: RefCell<String>,
@@ -53,7 +53,7 @@ impl RouterService {
         });
 
         Self {
-            registerd_routes: RefCell::new(RouteSlot::Routes {
+            registered_routes: RefCell::new(RouteSlot::Routes {
                 partial: String::from("/"),
                 total: String::from("/"),
                 rest: Vec::new(),