You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/09/08 04:36:11 UTC

[dubbo-website] branch master updated: fix doc context (#935)

This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d72e76  fix doc context (#935)
9d72e76 is described below

commit 9d72e765f2fafa7db7cfdacc4f643d4d113bdc94
Author: Wang Chengming <63...@qq.com>
AuthorDate: Wed Sep 8 12:36:06 2021 +0800

    fix doc context (#935)
---
 content/zh/docs/advanced/context.md          | 2 +-
 content/zh/docsv2.7/user/examples/context.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/zh/docs/advanced/context.md b/content/zh/docs/advanced/context.md
index ad41238..9dbad0e 100644
--- a/content/zh/docs/advanced/context.md
+++ b/content/zh/docs/advanced/context.md
@@ -6,7 +6,7 @@ weight: 19
 description: "通过上下文存放当前调用过程中所需的环境信息"
 ---
 
-上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../references/xml) 中的**对应URL参数**一列。
+上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../../references/xml) 中的**对应URL参数**一列。
 
 RpcContext 是一个 ThreadLocal 的临时状态记录器,当接收到 RPC 请求,或发起 RPC 请求时,RpcContext 的状态都会变化。比如:A 调 B,B 再调 C,则 B 机器上,在 B 调 C 之前,RpcContext 记录的是 A 调 B 的信息,在 B 调 C 之后,RpcContext 记录的是 B 调 C 的信息。
 
diff --git a/content/zh/docsv2.7/user/examples/context.md b/content/zh/docsv2.7/user/examples/context.md
index ad41238..9dbad0e 100644
--- a/content/zh/docsv2.7/user/examples/context.md
+++ b/content/zh/docsv2.7/user/examples/context.md
@@ -6,7 +6,7 @@ weight: 19
 description: "通过上下文存放当前调用过程中所需的环境信息"
 ---
 
-上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../references/xml) 中的**对应URL参数**一列。
+上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../../references/xml) 中的**对应URL参数**一列。
 
 RpcContext 是一个 ThreadLocal 的临时状态记录器,当接收到 RPC 请求,或发起 RPC 请求时,RpcContext 的状态都会变化。比如:A 调 B,B 再调 C,则 B 机器上,在 B 调 C 之前,RpcContext 记录的是 A 调 B 的信息,在 B 调 C 之后,RpcContext 记录的是 B 调 C 的信息。