From 94446dc7a029d8ecd15651ac2f587716ed2e3778 Mon Sep 17 00:00:00 2001 From: Ryan Rehman Date: Thu, 7 Apr 2022 16:37:22 +0530 Subject: [PATCH] Fix invalid syntax in `README.md`. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d12ff70..df4e7ce 100644 --- a/README.md +++ b/README.md @@ -20,20 +20,20 @@ Add this dependency to your project's POM: ```java import com.browserstack.local.Local; -# creates an instance of Local +// creates an instance of Local Local bsLocal = new Local(); -# replace with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY". +// replace with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY". HashMap bsLocalArgs = new HashMap(); bsLocalArgs.put("key", ""); -# starts the Local instance with the required arguments +// starts the Local instance with the required arguments bsLocal.start(bsLocalArgs); -# check if BrowserStack local instance is running +// check if BrowserStack local instance is running System.out.println(bsLocal.isRunning()); -#stop the Local instance +// stop the Local instance bsLocal.stop(); ```