浏览代码

update: modify outlet context initialization level (#3830)

Sabin Regmi 3 月之前
父节点
当前提交
8b4ccb7817
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/router/src/contexts/outlet.rs

+ 2 - 2
packages/router/src/contexts/outlet.rs

@@ -17,7 +17,7 @@ pub struct OutletContext<R> {
 }
 
 impl<R> OutletContext<R> {
-    /// Creates a new outlet context starting at level 1
+    /// Creates a new outlet context starting at level 0
     pub fn new() -> Self {
         Self {
             current_level: 0,
@@ -62,7 +62,7 @@ impl<R> OutletContext<R> {
 /// Returns the current outlet context from the component hierarchy.
 ///
 /// This hook retrieves the outlet context from the current component scope. If no context is found,
-/// it creates a new context with a default level of 1.
+/// it creates a new context with a default level of 0.
 ///
 /// # Type Parameters
 ///