Skip to content

Commit 24725be

Browse files
committed
removed touch callout from VS Code tutorial and linked to touch section in CLI tutorial
1 parent d5da558 commit 24725be

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h1 style="border-bottom: 1px solid var(--main-header-border-bottom-color, #eaec
3131
</div>
3232
<div class="ui hidden divider"></div>
3333
<div class="ui three stackable cards">
34-
<a class="ui raised card" target="_blank" href="https://eecs280staff.github.io/tutorials/setup_vscode.html">
34+
<a class="ui raised card" target="_blank" href="setup_vscode.html">
3535
<div class="content">
3636
<div class="right aligned floating ui primary label">
3737
Recommended
@@ -44,7 +44,7 @@ <h1 style="border-bottom: 1px solid var(--main-header-border-bottom-color, #eaec
4444
</div>
4545
</div>
4646
</a>
47-
<a class="ui raised card" target="_blank" href="https://eecs280staff.github.io/tutorials/setup_xcode.html">
47+
<a class="ui raised card" target="_blank" href="setup_xcode.html">
4848
<div class="content">
4949
<div class="header">
5050
<i class="icon-xcode"></i> XCode
@@ -54,7 +54,7 @@ <h1 style="border-bottom: 1px solid var(--main-header-border-bottom-color, #eaec
5454
</div>
5555
</div>
5656
</a>
57-
<a class="ui raised card" target="_blank" href="https://eecs280staff.github.io/tutorials/setup_visualstudio.html">
57+
<a class="ui raised card" target="_blank" href="setup_visualstudio.html">
5858
<div class="content">
5959
<div class="header">
6060
<i class="icon-visual-studio"></i> Visual Studio

docs/setup_vscode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ Select the add file icon and give it a name, e.g., `main.cpp`.
180180

181181
<img src="images/vscode023.png" width="768px" />
182182

183-
<div class="primer-spec-callout info" markdown="1">
184-
**Pro-tip:** You can also create files from the command line. The `touch` command creates an empty file.
183+
Create a `main.cpp` file using [`touch`](cli.html#touch).
184+
185185
```console
186186
$ touch main.cpp
187187
```
188-
</div>
189188

190-
Copy-paste this Hello World program into your `main.cpp`.
189+
Copy-paste this Hello World program into it.
190+
191191
```c++
192192
#include <iostream>
193193
using namespace std;

0 commit comments

Comments
 (0)