docs(intro): fix caps of Hello, world!

This commit is contained in:
davhojt 2023-01-08 15:37:20 +02:00
parent af8a7c5bc5
commit 2d57018134
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Create a file named `intro.dart` with the following content and run it!
```dart
void main() {
print("Hello, World!");
print("Hello, world!");
}
```