From 13b6b7e71b52095f29c7d536ba8e3aaf2eee68ee Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Fri, 24 Nov 2023 17:03:05 +0000 Subject: [PATCH] Fixed a typo in the warn if private log message. (#824) --- pkgs/ffigen/lib/src/code_generator/library.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/ffigen/lib/src/code_generator/library.dart b/pkgs/ffigen/lib/src/code_generator/library.dart index befdfcecb..75cbdebc9 100644 --- a/pkgs/ffigen/lib/src/code_generator/library.dart +++ b/pkgs/ffigen/lib/src/code_generator/library.dart @@ -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."); } }