Skip to content

Commit

Permalink
fix markdown syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
hezhangjian committed Sep 24, 2021
1 parent 639aae9 commit 67da0dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions doc/JVM-SANDBOX-DEVELOPER-GUIDE-Chinese.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public abstract class Clock {

- 一个是正常的实现

```java
```java
/**
* 一个正常的钟实现
*/
Expand Down Expand Up @@ -109,7 +109,7 @@ public abstract class Clock {

- 一个是损坏的钟实现

```java
```java
/**
* 一个损坏的钟实现
*/
Expand Down Expand Up @@ -177,7 +177,7 @@ java.lang.IllegalStateException
<dependency>
<groupId>com.alibaba.jvm.sandbox</groupId>
<artifactId>sandbox-api</artifactId>
<version>1.0.3</version>
<version>1.3.1</version>
<scope>provided</scope>
</dependency>

Expand Down
10 changes: 5 additions & 5 deletions doc/JVM-SANDBOX-DEVELOPER-GUIDE-English.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This clock has two implementation classes,

- One is normal to achieve

```java
```java
/**
* One is normal to achieve
*/
Expand Down Expand Up @@ -109,7 +109,7 @@ This clock has two implementation classes,

- One is the damaged bell to achieve

```java
```java
/**
* A damaged bell is realized
*/
Expand All @@ -130,7 +130,7 @@ This clock has two implementation classes,

Run every 10 seconds after the time when the error will be reported

```
```
java.lang.IllegalStateException
at Clock$BrokenClock.checkState(Clock.java:77)
at Clock.report(Clock.java:40)
Expand All @@ -151,7 +151,7 @@ java.lang.IllegalStateException
at Clock.report(Clock.java:40)
at Clock.loopReport(Clock.java:50)
at Clock.main(Clock.java:94)
```
```

### Repair damaged bells

Expand All @@ -176,7 +176,7 @@ The problem lies in two parts of `BrokenClock` 's
<dependency>
<groupId>com.alibaba.jvm.sandbox</groupId>
<artifactId>sandbox-api</artifactId>
<version>1.0.3</version>
<version>1.3.1</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit 67da0dd

Please sign in to comment.