From f0de6004928f80536b5d88ccf424985dfecb4a4a Mon Sep 17 00:00:00 2001 From: John Knox Date: Wed, 6 Nov 2019 08:02:39 -0800 Subject: [PATCH] Fix wording of network request buttons Summary: I don't know why we left this for so long, it doesn't make a good first impression. Reviewed By: mweststrate Differential Revision: D18348908 fbshipit-source-id: b8b0e5fe8f6ab81281d6ea1a1299ebdaaf0b9c43 --- .../java/com/facebook/flipper/sample/RootComponentSpec.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/sample/src/main/java/com/facebook/flipper/sample/RootComponentSpec.java b/android/sample/src/main/java/com/facebook/flipper/sample/RootComponentSpec.java index 3d179e5b2..417d7cf6a 100644 --- a/android/sample/src/main/java/com/facebook/flipper/sample/RootComponentSpec.java +++ b/android/sample/src/main/java/com/facebook/flipper/sample/RootComponentSpec.java @@ -36,14 +36,14 @@ public class RootComponentSpec { return Column.create(c) .child( Text.create(c) - .text("Tap to hit get request") + .text("Send GET request") .key("1") .marginDip(YogaEdge.ALL, 10) .textSizeSp(20) .clickHandler(RootComponent.hitGetRequest(c))) .child( Text.create(c) - .text("Tap to hit post request") + .text("Send POST request") .key("2") .marginDip(YogaEdge.ALL, 10) .textSizeSp(20)