Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo: flase -> false #1574

Merged
merged 1 commit into from
Feb 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/java/basis/java-basic-questions-01.md
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ Double i4 = 1.2;
System.out.println(i3 == i4);// 输出 false
```

下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `flase` 呢?
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `false` 呢?

```java
Integer i1 = 40;
Expand Down
2 changes: 1 addition & 1 deletion docs/java/jvm/memory-area.md
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ public static Boolean valueOf(boolean b) {

如果超出对应范围仍然会去创建新的对象,缓存的范围区间的大小只是在性能和资源之间的权衡。

下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `flase` 呢?
下面我们来看一下问题。下面的代码的输出结果是 `true` 还是 `false` 呢?

```java
Integer i1 = 40;
Expand Down