Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix comments to have periods
  • Loading branch information
mike-v2 committed Nov 29, 2023
commit 50026bc44e0913ebd1213aa17f7990f8dbf33308
4 changes: 2 additions & 2 deletions packages/flutter_image/example/test/readme_excerpts_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ void main() {
// Ensure that the snippet code runs successfully.
final Image result = networkImageWithRetry();

// It should have a image property of the right type
// It should have a image property of the right type.
expect(result.image, isInstanceOf<NetworkImageWithRetry>());
// And the NetworkImageWithRetry should have a url property
// And the NetworkImageWithRetry should have a url property.
final NetworkImageWithRetry networkImage =
result.image as NetworkImageWithRetry;
expect(networkImage.url, equals('http://example.com/avatars/123.jpg'));
Expand Down