From 253cd3d0abf2695d33f1a734e668c72dceac538d Mon Sep 17 00:00:00 2001 From: Nikita Puzankov Date: Tue, 15 Sep 2020 00:03:45 +0400 Subject: [PATCH] Small typo fix. (#542) --- provider_shopper/lib/screens/catalog.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider_shopper/lib/screens/catalog.dart b/provider_shopper/lib/screens/catalog.dart index 3f4376a7e..ac021cdfb 100644 --- a/provider_shopper/lib/screens/catalog.dart +++ b/provider_shopper/lib/screens/catalog.dart @@ -49,7 +49,7 @@ class _AddButton extends StatelessWidget { : () { // If the item is not in cart, we let the user add it. // We are using context.read() here because the callback - // is executed whenever the user taps the the button. In other + // is executed whenever the user taps the button. In other // words, it is executed outside the build method. var cart = context.read(); cart.add(item);