From bb1d139c50b8347b26d09b48b69a9c2e6b704fbc Mon Sep 17 00:00:00 2001 From: Anthony Date: Fri, 30 Aug 2019 10:29:32 -0400 Subject: [PATCH] Replace doc example text (#39428) The Text in the Transform.scale example is "Bad Ideas", which could be confusing as example code. This PR replaces it with something more random. --- packages/flutter/lib/src/widgets/basic.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/basic.dart b/packages/flutter/lib/src/widgets/basic.dart index d606c958a8..b16504ba99 100644 --- a/packages/flutter/lib/src/widgets/basic.dart +++ b/packages/flutter/lib/src/widgets/basic.dart @@ -1184,7 +1184,7 @@ class Transform extends SingleChildRenderObjectWidget { /// child: Container( /// padding: const EdgeInsets.all(8.0), /// color: const Color(0xFFE8581C), - /// child: const Text('Bad Ideas'), + /// child: const Text('Bad Idea Bears'), /// ), /// ) /// ```