Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
优化几处文档细节.
Brief changelog
开源共建 - 贡献源码 章节语句存在细微的语句不通顺问题.
readme 中存在链接格式不当问题, 导致 GitHub 的 Markdown 渲染器渲染结果不正确
用户指南 - Java 的 SDK 章节的概述部分 Maven 坐标使用了
${version}
占位符.这不是一个 错误, 但如果用户忘记将占位符替换为实际
nacos-client
版本号, 这会引用到用户 pom.xml 的version
字段; 当 Maven Central 中恰巧包含一个匹配用户 pom.xml 中version
字段的nacos-client
依赖时, Maven 将 正常 拉取到一个 可能不正常 的依赖, 但用户可能 不能及时发现这里潜在的问题.比如我自己的 pom.xml 里写的
version
是0.1.0
, 忘了替换掉nacos-client
的占位符, 完事 Maven Central 真的包含一个 0.1.0 版本的nacos-client
. 这个0.1.0
版本nacos-client
在调试时, 前面一切正常, 能正常连接 Nacos 服务器拉取配置, 但是就是没法注册服务.调了几个小时才发现是依赖版本号的问题, 吐了.此 PR 将文档中原本的
${version}
替换为一个大概率不会已存的占位符${NACOS-VERSION}
来帮助用户尽早发现依赖版本配置问题.