Skip to content

Commit b2933cc

Browse files
committed
fix typo: flase -> false
Signed-off-by: sam <sam2008ext@gmail.com>
1 parent 1c1501a commit b2933cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
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

+1-1
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)