Skip to content

Commit e500221

Browse files
anchoulsonewhl
authored andcommitted
Fixed comments
1 parent 71b6cf0 commit e500221

File tree

2 files changed

+4
-4
lines changed
  • CodeStyleAndFormatting/WhatIsFormatting/Theory
  • Introduction/GettingToKnowYou/GettingToKnowYou

2 files changed

+4
-4
lines changed

CodeStyleAndFormatting/WhatIsFormatting/Theory/task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ This code snippet doesn't have consistent indentation and proper spacing, making
2828
```java
2929
public class Main {
3030
public static void main(String[] args) {
31-
double l = 5.0;
32-
double w = 3.0;
33-
double area = calculateRectangleArea(l, w);
31+
double rectangleLength = 5.0;
32+
double rectangleWidth = 3.0;
33+
double area = calculateRectangleArea(rectangleLength, rectangleWidth);
3434
System.out.println("Rectangle area: " + area);
3535
}
3636

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Getting to know you
22

3-
Thank you for taking our Introduction to IDE Code Refactoring course!
3+
Thank you for taking our Introduction to IDE Java Code Refactoring course!
44
We would be happy to get to know you a bit better, so we’re asking you to fill
55
in [this brief form]().

0 commit comments

Comments
 (0)