Skip to content

Commit 3c90a77

Browse files
author
Colin Robertson
committed
Fix build issues
1 parent f79b436 commit 3c90a77

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/cpp/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ landingContent:
3030
links:
3131
- text: Hello world in Visual Studio with C++
3232
url: ../build/vscpp-step-1-create.md
33-
- text: Create a calculator in C++
33+
- text: Create a console calculator in C++
3434
url: ../get-started/tutorial-console-cpp.md
3535
- linkListType: video
3636
links:

docs/cpp/restrict-cpp-amp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ A function that has the `restrict(amp)` clause has the following limitations:
7070

7171
- Varargs.
7272

73-
For a discussion of function limitations, see [restrict(amp) restrictions](https://docs.microsoft.com/en-us/archive/blogs/nativeconcurrency/restrictamp-restrictions-part-0-of-n-introduction).
73+
For a discussion of function limitations, see [restrict(amp) restrictions](/archive/blogs/nativeconcurrency/restrictamp-restrictions-part-0-of-n-introduction).
7474

7575
## Example
7676

docs/get-started/tutorial-console-cpp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: Create a C++ console app project
2+
title: "Create a console calculator in C++"
33
description: "Create a Hello World console app and a calculator app in Visual C++"
44
ms.custom: "mvc"
55
ms.date: 08/19/2019
66
ms.topic: "tutorial"
77
ms.devlang: "cpp"
88
ms.assetid: 45138d70-719d-42dc-90d7-1d0ca31a2f54
99
---
10-
# Create a C++ console app project
10+
# Create a console calculator in C++
1111

1212
::: moniker range=">=vs-2019"
1313

14-
The usual starting point for a C++ programmer is a "Hello, world!" application that runs on the command line. That's what you'll create in Visual Studio in this article, and then we'll move on to something more challenging: a calculator app.
14+
The usual starting point for a C++ programmer is a "Hello, world!" application that runs on the command line. That's what you'll create first in Visual Studio in this article, and then we'll move on to something more challenging: a calculator app.
1515

1616
## Prerequisites
1717

docs/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ conceptualContent:
6363
# Card
6464
- title: Write C++ and C apps in Visual Studio
6565
links:
66-
- text: Create a console app
66+
- text: Create a console calculator app
6767
url: get-started/tutorial-console-cpp.md
6868
itemType: tutorial
6969
- text: Create a Windows Desktop app with Win32

docs/overview/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
href: ../build/vscpp-step-1-create.md
3131
- name: Build and run a C++ console app project
3232
href: ../build/vscpp-step-2-build.md
33-
- name: Create your second C++ app
33+
- name: Create a console calculator in C++
3434
href: ../get-started/tutorial-console-cpp.md
3535
- name: Create a UWP app
3636
href: /windows/uwp/cpp-and-winrt-apis/get-started

docs/windows/overview-of-windows-programming-in-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This section discusses how to use Visual Studio and the MFC/ATL wrapper librarie
1111

1212
## Command line (console) applications
1313

14-
C++ console applications run from the command line in a console window and can display text output only. For more information, see [Create a C++ console app project](../get-started/tutorial-console-cpp.md).
14+
C++ console applications run from the command line in a console window and can display text output only. For more information, see [Create a console calculator in C++](../get-started/tutorial-console-cpp.md).
1515

1616
## Native desktop client applications
1717

0 commit comments

Comments
 (0)