Skip to content

Commit cb732aa

Browse files
authored
Merge pull request Snailclimb#1574 from samho2008/fix-typo-flase
fix typo: flase -> false
2 parents f0c2ddd + b2933cc commit cb732aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/java/basis/java-basic-questions-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ Double i4 = 1.2;
749749
System.out.println(i3 == i4);// 输出 false
750750
```
751751
752-
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `flase` 呢?
752+
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `false` 呢?
753753
754754
```java
755755
Integer i1 = 40;

docs/java/jvm/memory-area.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ public static Boolean valueOf(boolean b) {
551551
552552
如果超出对应范围仍然会去创建新的对象,缓存的范围区间的大小只是在性能和资源之间的权衡。
553553
554-
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `flase` 呢?
554+
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `false` 呢?
555555
556556
```java
557557
Integer i1 = 40;

0 commit comments

Comments
 (0)