Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/pages/docs/hello-world.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Hello, World!

### 1. Your First Program

In Java, any line starting with `//` is a comment. Comments are intended for users reading the code to understand the intent and functionality of the program. It is completely ignored by the Java compiler (an application that translates Java program to Java bytecode that computer can execute). To learn more, visit [Java comments](/comments).
In Java, any line starting with `//` is a comment. Comments are intended for users reading the code to understand the intent and functionality of the program. It is completely ignored by the Java compiler (an application that translates Java program to Java bytecode that computer can execute). To learn more, visit [Java comments](/docs/comments).

### 2. class HelloWorld

Expand Down Expand Up @@ -86,4 +86,4 @@ public class HelloWorld {
}
```

Don't worry if you don't understand the meaning of `class` , `static` , methods, and so on for now. We will discuss it in detail in later chapters.
Don't worry if you don't understand the meaning of `class` , `static` , methods, and so on for now. We will discuss it in detail in later chapters.