Skip to content

Commit

Permalink
fix: Fixed invalid code in classes.md
Browse files Browse the repository at this point in the history
Signed-off-by: Fabian Baitura <[email protected]>
  • Loading branch information
ByteWolf-dev authored Sep 27, 2024
1 parent a3dbd86 commit aaef1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/latest/classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Person {
}
sayHello(): void {
print("Hello, my name is " + this.name + " and I am " + this.age + " years old.");
print(f"Hello, my name is {this.name} and I am {this.age} years old.");
}
}
Expand Down

0 comments on commit aaef1fa

Please sign in to comment.