From d20156292e16589b31279a4b0257ddf4b4a95214 Mon Sep 17 00:00:00 2001 From: Noman Date: Fri, 18 Feb 2022 20:09:29 +0100 Subject: [PATCH] Fixed some typos and missed "\n" on the MessageBox that appears when clicking on the "Connect and Fetch JSON" button. --- Form1.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Form1.cs b/Form1.cs index 3c4956f..7e8eef8 100644 --- a/Form1.cs +++ b/Form1.cs @@ -123,8 +123,8 @@ private void button_connectfetchjson_Click(object sender, EventArgs e) string clickMessage = "Make sure to:\n 1) Have ADB and proper ADB drivers for your device.\n"; clickMessage += "2) Have \"USB Debugging\" enabled on the device to recover from.\n"; clickMessage += "3) Connect ONLY the Android device you want to recover from.\n"; - clickMessage += "4) Allow ADB Debugging from the pop-uo on your device."; - clickMessage += "5) Have Chrome open on your android device."; + clickMessage += "4) Allow ADB Debugging from the pop-up on your device.\n"; + clickMessage += "5) Have Chrome open on your Android device."; MessageBox.Show(clickMessage, "REQUIREMENTS/INSTRUCTIONS", MessageBoxButtons.OK, MessageBoxIcon.Information); groupBox1.ForeColor = Color.White; importAndProcessGroupbox.ForeColor = Color.White;