fix ZH doc (#1127)

This commit is contained in:
penguin-wwy 2020-04-20 20:00:17 +08:00 committed by GitHub
parent 9209ebd3c9
commit a03259c678
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -519,7 +519,7 @@ OK
* [termd](https://github.com/termd/termd): Arthas的命令行实现基于termd开发是一款优秀的命令行程序开发框架感谢termd提供了优秀的框架。
* [crash](https://github.com/crashub/crash): Arthas的文本渲染功能基于crash中的文本渲染功能开发可以从[这里](https://github.com/crashub/crash/tree/1.3.2/shell)看到源码感谢crash在这方面所做的优秀工作。
* [cli](https://github.com/eclipse-vertx/vert.x/tree/master/src/main/java/io/vertx/core/cli): Arthas的命令行界面基于vert.x提供的cli库进行开发感谢vert.x在这方面做的优秀工作。
* [compiler](https://github.com/skalogs/SkaETL/tree/master/compiler) Arthas里的内存编器代码来源
* [compiler](https://github.com/skalogs/SkaETL/tree/master/compiler) Arthas里的内存编器代码来源
* [Apache Commons Net](https://commons.apache.org/proper/commons-net/) Arthas里的Telnet Client代码来源
* [async-profiler](https://github.com/jvm-profiling-tools/async-profiler) Arthas's profiler 命令.

View File

@ -41,7 +41,7 @@
* [sc](sc.md)——查看JVM已加载的类信息
* [sm](sm.md)——查看已加载类的方法信息
* [jad](jad.md)——反编译指定已加载类的源码
* [mc](mc.md)——内存编绎器,内存编绎`.java`文件为`.class`文件
* [mc](mc.md)——内存编译器,内存编译`.java`文件为`.class`文件
* [redefine](redefine.md)——加载外部的`.class`文件redefine到JVM里
* [dump](dump.md)——dump 已加载类的 byte code 到特定目录
* [classloader](classloader.md)——查看classloader的继承树urls类加载信息使用classloader去getResource

View File

@ -52,7 +52,7 @@ CharSequence {
...
```
#### 反编时只显示源代码
#### 反编时只显示源代码
默认情况下,反编译结果里会带有`ClassLoader`信息,通过`--source-only`选项,可以只打印源代码。方便和[mc](mc.md)/[redefine](redefine.md)命令结合使用。