diff options
author | ven <vendethiel@hotmail.fr> | 2016-01-28 10:39:08 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-01-28 10:39:08 +0100 |
commit | db0581411887c1cf1d43a663499c1fee948c5f01 (patch) | |
tree | 1c6751dcf98a740cc189b95ed1309c11d30a0922 | |
parent | 52901e176784ebfc8c44b49d0380b3db82f464bc (diff) | |
parent | a931cd772de4f5debc2dc379c0e8125ef9338d13 (diff) |
Merge pull request #2118 from cannium/patch-1
Remove junk string `450635425`
-rw-r--r-- | zh-cn/java-cn.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zh-cn/java-cn.html.markdown b/zh-cn/java-cn.html.markdown index a8fd2a4c..1e9c38f6 100644 --- a/zh-cn/java-cn.html.markdown +++ b/zh-cn/java-cn.html.markdown @@ -302,7 +302,7 @@ class Bicycle { // 构造函数是初始化一个对象的方式 // 以下是一个默认构造函数 - public Bi450635425cycle() { + public Bicycle() { gear = 1; cadence = 50; speed = 5; @@ -328,7 +328,7 @@ class Bicycle { return cadence; } - // void返450635425回值函数没有返回值 + // void返回值函数没有返回值 public void setCadence(int newValue) { cadence = newValue; } |