Skip to content

Commit 6d84403

Browse files
authored
Fix typo (#192)
* Fix typo Signed-off-by: Rome Li <[email protected]> * Fix grammar Signed-off-by: Rome Li <[email protected]> * Fix open folder command for windows Signed-off-by: Rome Li <[email protected]>
1 parent 28dd72e commit 6d84403

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/getting-started/assets/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ <h1 class="font-weight-light">Java Getting Started</h1>
5959
</p>
6060
<h3 class="font-weight-light">Setup the Workspace</h3>
6161
<p>
62-
VS Code Java works directly with <strong>folders</strong> that have source code. To setup the workspace, simply open a folder using File > <a href="command:workbench.action.files.openFileFolder" data-os="win">Open Folder...</a><a href="command:workbench.action.files.openFileFolder" data-os="mac">Open...</a>
62+
VS Code Java works directly with <strong>folders</strong> that have source code. To setup the workspace, simply open a folder using File > <a href="command:workbench.action.files.openFolder" data-os="win">Open Folder...</a><a href="command:workbench.action.files.openFileFolder" data-os="mac">Open...</a>
6363
</p>
6464
<blockquote class="card-body">
6565
<h5 class="font-weight-light">No Import Needed</h5>
@@ -86,7 +86,7 @@ <h3 class="font-weight-light">Run the program</h3>
8686
<blockquote class="card-body">
8787
<h5 class="font-weight-light">How to Debug?</h5>
8888
<p class="mb-0">
89-
When you press <a href="command:workbench.action.debug.start"><kbd>F5</kbd></a>, you are already debugging. Try set some breakpoint by clicking on the line numbers before each code line and run the program again. You'll see the execution paused at the breakpoint.<br/>
89+
When you press <a href="command:workbench.action.debug.start"><kbd>F5</kbd></a>, you are already debugging. Try setting some breakpoint by clicking on the line numbers before each code line and run the program again. You'll see the execution paused at the breakpoint.<br/>
9090
While debugging, switch to the <a href="command:workbench.view.debug">Debug View</a> to see the variables and call stacks.
9191
</p>
9292
</blockquote>
@@ -318,7 +318,7 @@ <h5 class="font-weight-light">Feedback Channels</h5>
318318
<dt class="col-sm-3"><a href="https://gitter.im/redhat-developer/vscode-java">Ask Questions</a></dt>
319319
<dd class="col-sm-9"><a href="https://gitter.im/redhat-developer/vscode-java">vscode-java</a> Gitter channel is recommended to ask for help</dd>
320320
<dt class="col-sm-3"><a href="https://github.com/microsoft/vscode-java-pack/issues">Open Issues</a></dt>
321-
<dd class="col-sm-9"><a href="https://github.com/microsoft/vscode-java-pack/issues">vscode-java-pack</a> GitHub repo is recommended for openning bugs</dd>
321+
<dd class="col-sm-9"><a href="https://github.com/microsoft/vscode-java-pack/issues">vscode-java-pack</a> GitHub repo is recommended for opening bugs</dd>
322322
<dt class="col-sm-3"><a href="https://twitter.com/search?q=vscodejava">Other Feedback</a></dt>
323323
<dd class="col-sm-9"><a href="https://twitter.com/VSCodeJava">@VSCodeJava</a> is the handle to mention on twitter</dd>
324324
</dl>
@@ -332,7 +332,7 @@ <h3 class="font-weight-light">Why do I see tons of problems and red squiggles?</
332332
The problems are from VS Code Java when it tries to compile and build your codebase. If you experience this on your first use, it's possibly because of <strong>missing dependencies</strong>. To fix it, you probably want to start from fixing the project configuration files, e.g. <code>pom.xml</code> and <code>build.gradle</code>. After you make changes to those files, try <a href="command:java.projectConfiguration.update">Update Project Configuration</a> and <a href="command:java.workspace.compile">Force Compilation</a>.
333333
</p>
334334
<p>
335-
It can also happen after you work with one project for a while. Try <a href="command:java.clean.workspace">Clean Workspace</a> to get rid of any intermidiate output from the language server.
335+
It can also happen after you work with one project for a while. Try <a href="command:java.clean.workspace">Clean Workspace</a> to get rid of any intermediate output from the language server.
336336
</p>
337337
<p>
338338
If the problem persists, follow the <a href="https://github.com/redhat-developer/vscode-java/wiki/Troubleshooting">Troubleshooting Guide</a>. For advanced users, the <a href="command:java.open.clientLog">Client Logs</a> and <a href="command:java.open.serverLog">Server Logs</a> will definitely help you understand what is going on.

0 commit comments

Comments
 (0)