Skip to content

Commit 5591a23

Browse files
committed
Fix typos
1 parent 65df1f6 commit 5591a23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/instance_methods/challenges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void main() {
111111

112112
## Challenge 4.
113113

114-
Make a `Rectange` class which has a `width` field and a `height`
114+
Make a `Rectangle` class which has a `width` field and a `height`
115115
field. Give it an instance method named `toCharArray` which gives
116116
a `char[]` that can be printed to display a rectangle of the given
117117
width and height.

src/strings_ii/UPPERCASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# UPPERCASE
22

33
Similarly, if you have a `String` which potentially contains lower-cased letters, you can get a new `String` with everything
4-
transformed into lower-case using the `.toUpperCase()` method.
4+
transformed into upper-case using the `.toUpperCase()` method.
55

66
```java
77
void main() {

0 commit comments

Comments
 (0)