Skip to content

Commit

Permalink
[encoder] Fix pretty-printed output
Browse files Browse the repository at this point in the history
  • Loading branch information
simonesestito committed Jan 19, 2024
1 parent c708a58 commit ddbc400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_encoder/example/data_encoder_cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void main(List<String> args) {

switch (action) {
case 'encode':
print('Input length: \${data.length}');
print('Input length: ${data.length}');
final resultBytes = encoder.encode(data);
print('Result bytes (hex): ${hex.encode(resultBytes)}');
print('Result length (bytes): ${resultBytes.length}');
Expand Down

0 comments on commit ddbc400

Please sign in to comment.