You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/09/13 13:15:39 UTC

[skywalking-java] branch main updated: Fix doc format issue. (#24)

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

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git


The following commit(s) were added to refs/heads/main by this push:
     new a27cf2a  Fix doc format issue. (#24)
a27cf2a is described below

commit a27cf2af712f70122812cfb84a54f41af56b9f7b
Author: 吴晟 Wu Sheng <wu...@foxmail.com>
AuthorDate: Mon Sep 13 21:15:33 2021 +0800

    Fix doc format issue. (#24)
---
 docs/en/contribution/compiling.md | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/docs/en/contribution/compiling.md b/docs/en/contribution/compiling.md
index 48771ec..0c54503 100644
--- a/docs/en/contribution/compiling.md
+++ b/docs/en/contribution/compiling.md
@@ -4,15 +4,19 @@ This document will help you compile and build a project in your maven and set yo
 Prepare JDK 8+.
 
 * If you clone codes from https://github.com/apache/skywalking-java
-> git clone https://github.com/apache/skywalking-java.git
-> cd skywalking-java
-> ./mvnw clean package -Pall
+```shell
+git clone https://github.com/apache/skywalking-java.git
+cd skywalking-java
+./mvnw clean package -Pall
+```
 
 * If you download source codes tar from https://skywalking.apache.org/downloads/
 
-> ./mvnw clean package
+```shell
+./mvnw clean package
+```
 
 The agent binary package is generated in `skywalking-agent` folder.
 
 Set **Generated Source Codes**(`grpc-java` and `java` folders in **apm-protocol/apm-network/target/generated-sources/protobuf**)
-folders if you are using IntelliJ IDE.
\ No newline at end of file
+folders if you are using IntelliJ IDE.