Skip to content

Commit 400be14

Browse files
committed
fixed
1 parent f3730bc commit 400be14

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/conclusion/what_now.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ three paths.
147147
Path #1 is to learn Java Swing. This is an old crusty GUI framework that is kinda difficult to use
148148
but has the pro of coming with Java and being able to run on every potato in existence.
149149

150-
[Docs for `java.desktop` (Swing) here](https://docs.oracle.com/en/java/javase/24/docs/api/jdk.httpserver/module-summary.html)
150+
[Docs for `java.desktop` (Swing) here](https://docs.oracle.com/en/java/javase/24/docs/api/java.desktop/module-summary.html)
151151

152152
Path #2 is the learn JavaFX. By all accounts JavaFX is better software than Swing, but it was cursed
153153
by coming out at a point in history where desktop apps were no longer big business to develop. It

src/lambdas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ interface Band {
1212
void playHitSong();
1313
}
1414
15-
class Starcadian implements Bank {
15+
class Starcadian implements Band {
1616
@Override
1717
public void playHitSong() {
1818
IO.println("ultralove");

src/streams/terminal_operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ For consuming a stream you use "terminal operations." Terminal operations
99
The simplest terminal operation is `.forEach`. It consumes the entire stream and does
1010
something for each element in the flow.
1111

12-
```java,no_run
12+
```java
1313
~void main() {
1414
List<String> cities = List.of(
1515
"St. Louis", "Dallas", "London", "Tokyo"
@@ -24,7 +24,7 @@ cities.stream()
2424
Once a terminal operation has been performed the stream is no longer
2525
usable.
2626

27-
```java
27+
```java,panics
2828
~void main() {
2929
List<String> cities = List.of(
3030
"St. Louis", "Dallas", "London", "Tokyo"

0 commit comments

Comments
 (0)