Skip to content

Commit a5f9421

Browse files
authored
rename student getting started page (#693)
* rename student getting started page Signed-off-by: Yan Zhang <[email protected]> * Update index.html
1 parent 763ce49 commit a5f9421

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/getting-started/assets/index.html

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<head>
55
<meta charset="UTF-8">
66
<meta http-equiv="Content-Security-Policy" content="default-src 'unsafe-inline'">
7-
<title>Java Getting Started</title>
7+
<title>Coding and Debugging Tips for Beginners</title>
88
</head>
99

1010
<body>
1111
<div class="container mt-5 mb-5">
1212
<div class="row mb-3">
1313
<div class="col">
14-
<h1 class="font-weight-light">Java Getting Started</h1>
14+
<h1 class="font-weight-light">Coding and Debugging Tips for Beginners</h1>
1515
</div>
1616
</div>
1717
<div class="row">
@@ -61,12 +61,6 @@ <h3 class="font-weight-light">Setup the Workspace</h3>
6161
<p>
6262
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>
64-
<blockquote class="card-body">
65-
<h5 class="font-weight-light">No Import Needed</h5>
66-
<p class="mb-0">
67-
If the folder you open has project/build configuration files like <code>pom.xml</code> or <code>build.gradle</code>, they will be picked up automatically and the folder will be treated as a project.
68-
</p>
69-
</blockquote>
7064
<h3 class="font-weight-light">Create a Class</h3>
7165
<p>
7266
A program needs an entry and a Java program needs a class to host its entry. To create a class for our quick-start program, <a href="command:explorer.newFile">Create a File</a> and set its name to <code>QuickStart.java</code>.<br/>

src/welcome/assets/components/NavigationPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class NavigationPanel extends React.Component {
3737
name: "Student",
3838
icon: <Icon className="codicon" icon={mortarBoardIcon} />,
3939
actions: [
40-
{ name: "Getting Started", command: "java.gettingStarted" },
40+
{ name: "Coding and Debugging Tips", command: "java.gettingStarted" },
4141
{ name: "Tutorial: Running and Debugging", command: "java.helper.openUrl", args: ["https://code.visualstudio.com/docs/java/java-debugging"] },
4242
{ name: "Tutorial: Testing", command: "java.helper.openUrl", args: ["https://code.visualstudio.com/docs/java/java-testing"] },
4343
{ name: "Configure Sources, Dependencies, Output Folder...", command: "java.classpathConfiguration" },

0 commit comments

Comments
 (0)