瀏覽代碼

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

This was "registerd_routes", missing an "e".
Dave Rolsky 3 年之前
父節點
當前提交
d367e0f
共有 1 個文件被更改,包括 2 次插入2 次删除
  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(),