Skip to content

Commit 94446dc

Browse files
committed
Fix invalid syntax in README.md.
1 parent b40d858 commit 94446dc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ Add this dependency to your project's POM:
2020
```java
2121
import com.browserstack.local.Local;
2222

23-
# creates an instance of Local
23+
// creates an instance of Local
2424
Local bsLocal = new Local();
2525

26-
# replace <browserstack-accesskey> with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY".
26+
// replace <browserstack-accesskey> with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY".
2727
HashMap<String, String> bsLocalArgs = new HashMap<String, String>();
2828
bsLocalArgs.put("key", "<browserstack-accesskey>");
2929

30-
# starts the Local instance with the required arguments
30+
// starts the Local instance with the required arguments
3131
bsLocal.start(bsLocalArgs);
3232

33-
# check if BrowserStack local instance is running
33+
// check if BrowserStack local instance is running
3434
System.out.println(bsLocal.isRunning());
3535

36-
#stop the Local instance
36+
// stop the Local instance
3737
bsLocal.stop();
3838
```
3939

0 commit comments

Comments
 (0)