summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
diff options
context:
space:
mode:
authorcan <can@canx.me>2016-01-28 16:45:24 +0800
committercan <can@canx.me>2016-01-28 16:45:24 +0800
commita931cd772de4f5debc2dc379c0e8125ef9338d13 (patch)
tree1c6751dcf98a740cc189b95ed1309c11d30a0922 /zh-cn
parent52901e176784ebfc8c44b49d0380b3db82f464bc (diff)
Remove junk string `450635425`
Diffstat (limited to 'zh-cn')
-rw-r--r--zh-cn/java-cn.html.markdown4
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;
}