Skip to content

Commit

Permalink
Fixed a typo in the warn if private log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
rizerco authored Nov 23, 2023
1 parent 9f29edc commit 7d4a5dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/ffigen/lib/src/code_generator/library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Library {
void _warnIfPrivateDeclaration(Binding b) {
if (b.name.startsWith('_') && !b.isInternal) {
_logger.warning(
"Generated declaration '${b.name}' start's with '_' and therefore will be private.");
"Generated declaration '${b.name}' starts with '_' and therefore will be private.");
}
}

Expand Down

0 comments on commit 7d4a5dd

Please sign in to comment.