Skip to content

Commit a532014

Browse files
authored
Merge pull request #4126 from MicrosoftDocs/main637974773305827617sync_temp
Repo sync for protected CLA branch
2 parents 36495dc + 6c328df commit a532014

12 files changed

+24
-24
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Thank you for your interest in contributing to the Visual C++ documentation!
44

5-
In this topic, you'll see the basic process for adding or updating content in the [Visual C++ documentation site](https://docs.microsoft.com/cpp).
5+
In this topic, you'll see the basic process for adding or updating content in the [Visual C++ documentation site](https://docs.microsoft.com/cpp/).
66

77
In this topic, we'll cover:
88

@@ -44,17 +44,17 @@ docs
4444
wstring-conversion.png
4545
```
4646

47-
**Step 5:** Submit a Pull Request (PR) from your branch to `MicrosoftDocs/cpp-docs/master`.
47+
**Step 5:** Submit a Pull Request (PR) from your branch to `MicrosoftDocs/cpp-docs/main`.
4848

4949
If your PR is addressing an existing issue, add the `Fixes #Issue_Number` keyword to the commit message or PR description, so the issue can be automatically closed when the PR is merged. For more information, see [Closing issues via commit messages](https://help.github.com/articles/closing-issues-via-commit-messages/).
5050

5151
The Visual Studio team will review your PR and let you know if the change looks good or if there are any other updates/changes necessary in order to approve it.
5252

5353
**Step 6:** Make any necessary updates to your branch as discussed with the team.
5454

55-
The maintainers will merge your PR into the master branch once feedback has been applied and your change looks good.
55+
The maintainers will merge your PR into the main branch once feedback has been applied and your change looks good.
5656

57-
On a certain cadence, we push all commits from master branch into the live branch and then you'll be able to see your contribution live on [docs.microsoft.com](https://docs.microsoft.com/cpp/).
57+
On a certain cadence, we push all commits from main branch into the live branch and then you'll be able to see your contribution on [Microsoft Docs](https://docs.microsoft.com/cpp/).
5858

5959
## DOs and DON'Ts
6060

@@ -72,7 +72,7 @@ Below is a short list of guiding rules that you should keep in mind when you are
7272
7373
## Building the docs
7474

75-
The documentation is written in [GitHub Flavored Markdown](https://help.github.com/categories/writing-on-github/) and built using [DocFX](https://dotnet.github.io/docfx/) and other internal publishing/building tools. It is hosted at [docs.microsoft.com](https://docs.microsoft.com/).
75+
The documentation is written in [GitHub-Flavored Markdown](https://help.github.com/categories/writing-on-github/) and built using [DocFX](https://dotnet.github.io/docfx/) and other internal publishing and build tools. It's published on [Microsoft Docs](https://docs.microsoft.com/).
7676

7777
If you want to build the docs locally, you need to install [DocFX](https://dotnet.github.io/docfx/); latest versions are the best.
7878

@@ -94,6 +94,6 @@ For now, include required sample code as inline code blocks in your article. The
9494

9595
## Contributor license agreement
9696

97-
You must sign the [Contribution License Agreement (CLA)](LICENSE) before your PR is merged. This is a one-time requirement for projects in docs.microsoft.com. You can read more about [Contribution License Agreements (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) on Uncyclopedia.
97+
You must sign the [Contribution License Agreement (CLA)](LICENSE) before your PR is merged. This is a one-time requirement for projects on Microsoft Docs. You can read more about [Contribution License Agreements (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) on Uncyclopedia.
9898

9999
You don't have to sign the agreement up-front. You can clone, fork, and submit your PR as usual. When your PR is created, it is classified by a CLA bot. If the change is trivial (for example, you fixed a typo), then the PR is labeled with CLA-not-required. Otherwise, it's classified as CLA-required. Once you signed the CLA, the current and all future pull requests are labeled as CLA-signed.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The documentation for Visual Basic and Visual C# are located in a separate repos
66

77
## Contributing to the documentation
88

9-
We welcome your contributions to help us improve the MSVC docs. For a comprehensive guide to contributing to docs.microsoft.com, see the [Microsoft Docs contributor guide overview](https://docs.microsoft.com/contribute). For details on how to make a contribution to the MSVC documentation, see the [Contributing guide](CONTRIBUTING.md).
9+
We welcome your contributions to help us improve the MSVC docs. For a comprehensive guide to contributing to Microsoft Docs, see the [contributor guide overview](https://docs.microsoft.com/contribute). For details on how to make a contribution to the MSVC documentation, see the [Contributing guide](CONTRIBUTING.md).
1010

1111
Several feature areas of MSVC have their own folders in this repository, such as `standard-library` for articles on the C++ Standard Library, `ide` for C++-specific articles on the Visual Studio interactive development environment (IDE), and so forth. The `/media` subfolder in each folder contains art files for the articles. The [Contributing guide](CONTRIBUTING.md) has more information.
1212

docs/build/building-on-the-command-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Use the compiler (cl.exe) to compile and link source code files into apps, libra
251251
[`Link`](reference/linking.md)<br/>
252252
Use the linker (link.exe) to link compiled object files and libraries into apps and DLLs.
253253

254-
When you build on the command line, the F1 command isn't available for instant help. Instead, you can use a search engine to get information about warnings, errors, and messages. You can also download and use the offline help files. To use the search in docs.microsoft.com, enter your query in the search box at the top of any article.
254+
When you build on the command line, the F1 command isn't available for instant help. Instead, you can use a search engine to get information about warnings, errors, and messages. You can also download and use the offline help files. To use the search in Microsoft Docs, enter your query in the search box at the top of any article.
255255

256256
## Command-line project management tools
257257

docs/ide/adding-functionality-with-code-wizards-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.assetid: 6afb7ef9-7056-423d-b244-91bb4236d1d7
1010
Once you have created a project, you will want to change or add to that project's functionality. Such tasks include creating new classes, adding new member functions and variables, and adding Automation methods and properties. The code wizards are designed to let you do all these things.
1111

1212
> [!NOTE]
13-
> The following rarely-used code wizards are removed in Visual Studio 2019. General support for ATL and MFC is not impacted by the removal of these wizards. Sample code for these technologies is archived at Microsoft Docs and the VCSamples GitHub repository.
13+
> The following rarely-used code wizards are removed in Visual Studio 2019. General support for ATL and MFC is not impacted by the removal of these wizards. Sample code for these technologies is archived in Microsoft Docs and the VCSamples GitHub repository.
1414
1515
- ATL COM+ 1.0 Component Wizard
1616
- ATL Active Server Pages Component Wizard

docs/ide/read-and-understand-code-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Hover over a variable or function declaration, right-click, then choose **Peek D
8585

8686
## F1 Help
8787

88-
Place the cursor on or just after any type, keyword or function and press **F1** to go directly to the relevant reference topic on docs.microsoft.com. **F1** also works on items in the error list, and in many dialog boxes.
88+
Place the cursor on or just after any type, keyword or function and press **F1** to go directly to the relevant reference topic on Microsoft Docs. **F1** also works on items in the error list and in many dialog boxes.
8989

9090
## Class View
9191

docs/index.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,19 +127,19 @@ tools:
127127
title: Languages and frameworks
128128
items:
129129
- title: C++
130-
imageSrc: https://docs.microsoft.com/media/logos/logo_Cplusplus.svg
130+
imageSrc: /media/logos/logo_Cplusplus.svg
131131
url: cpp/index.yml
132132
- title: C
133-
imageSrc: https://docs.microsoft.com/media/logos/logo_C.svg
133+
imageSrc: /media/logos/logo_C.svg
134134
url: c-language/index.yml
135135
- title: Microsoft Assembler
136136
imageSrc: media/index/logo-asm.svg
137137
url: intrinsics/index.yml
138138
- title: C++/CX for Windows Runtime
139-
imageSrc: https://docs.microsoft.com/media/logos/logo_Cplusplus.svg
139+
imageSrc: /media/logos/logo_Cplusplus.svg
140140
url: cppcx/visual-c-language-reference-c-cx.md
141141
- title: C++/CLI for .NET
142-
imageSrc: https://docs.microsoft.com/media/logos/logo_Cplusplus.svg
142+
imageSrc: /media/logos/logo_Cplusplus.svg
143143
url: dotnet/dotnet-programming-with-cpp-cli-visual-cpp.md
144144
- title: Active Template Library (ATL)
145145
imageSrc: media/index/logo-atl.svg
@@ -148,7 +148,7 @@ tools:
148148
imageSrc: media/index/logo-mfc.svg
149149
url: mfc/mfc-desktop-applications.md
150150
- title: C++/WinRT for Windows Runtime
151-
imageSrc: https://docs.microsoft.com/media/logos/logo_Cplusplus.svg
151+
imageSrc: /media/logos/logo_Cplusplus.svg
152152
url: /windows/uwp/cpp-and-winrt-apis/
153153

154154
# additionalContent section (optional)

docs/mfc/ole-background.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Some of the more important OLE topics are covered in the following articles:
6161

6262
- [OLE Background: MFC Implementation](ole-background-mfc-implementation.md)
6363

64-
For general OLE information not found in the above articles, [search for OLE](/search/?terms=ole) in Microsoft Docs.
64+
For general OLE information not found in the articles listed, [search for OLE](/search/?terms=ole) .
6565

6666
## See also
6767

docs/overview/how-to-report-a-problem-with-the-visual-cpp-toolset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ Create your repro as a minimal IDE project, then package it by compressing the e
356356

357357
## Ways to send your report
358358

359-
You have a couple of good ways to get your report to us. You can use Visual Studio's built-in [Report a Problem Tool](/visualstudio/ide/how-to-report-a-problem-with-visual-studio), or the [Visual Studio Developer Community]( https://aka.ms/feedback/report?space=62) page. There's also a **Product feedback** button at the bottom of this page. The choice depends on whether you want to use the built-in tools in the IDE to capture screenshots and organize your report. If you prefer not to, you can use the Developer Community website directly.
359+
You have a couple of good ways to get your report to us. You can use Visual Studio's built-in [problem reporting tool](/visualstudio/ide/how-to-report-a-problem-with-visual-studio) or the [Visual Studio Developer Community](https://aka.ms/feedback/report?space=62) page. There's also a **Product feedback** button at the bottom of this page. The choice depends on whether you want to use the built-in tools in the IDE to capture screenshots and organize your report. If you prefer not to, you can use the Developer Community website directly.
360360

361361
> [!NOTE]
362362
> Regardless of how you submit your report, Microsoft respects your privacy. Microsoft is committed to compliance with all data privacy laws and regulations. For information about how we treat the data that you send us, see the [Microsoft Privacy Statement](https://privacy.microsoft.com/privacystatement).
@@ -404,6 +404,6 @@ To maintain your privacy and keep your sensitive information out of public view,
404404

405405
## How to report a C++ documentation issue
406406

407-
We use GitHub issues to track problems reported in our documentation. You can now create GitHub issues directly from a content page, which enables you interact in a much richer way with writers and product teams. If you see an issue with a document, a bad code sample, a confusing explanation, a critical omission, or even just a typo, you can easily let us know. Scroll to the bottom of the page and select **Sign in to give documentation feedback**. You'll need to create a GitHub account if you don't have one already. When you have a GitHub account, you can see all of our documentation issues and their status. You also get notifications when changes are made for the issue you reported. For more information, see [A New Feedback System Is Coming to docs.microsoft.com](/teamblog/a-new-feedback-system-is-coming-to-docs).
407+
We use GitHub issues to track problems reported in our documentation. You can now create GitHub issues directly from a content page, which enables you interact in a much richer way with writers and product teams. If you see an issue with a document, a bad code sample, a confusing explanation, a critical omission, or even just a typo, you can easily let us know. Scroll to the bottom of the page and select **Sign in to give documentation feedback**. You'll need to create a GitHub account if you don't have one already. When you have a GitHub account, you can see all of our documentation issues and their status. You also get notifications when changes are made for the issue you reported. For more information, see our [Feedback System blog entry](/teamblog/a-new-feedback-system-is-coming-to-docs).
408408

409409
You create a documentation issue on GitHub when you use the documentation feedback button. The issue is automatically filled in with some information about the page you created the issue on. That's how we know where the problem is located, so don't edit this information. Just append the details about what's wrong, and if you like, a suggested fix. [Our C++ docs are open source](https://github.com/MicrosoftDocs/cpp-docs/), so if you'd like to submit a fix yourself, you can. For more information about how you can contribute to our documentation, see our [Contributing guide](https://github.com/MicrosoftDocs/cpp-docs/blob/master/CONTRIBUTING.md) on GitHub.

docs/overview/visual-cpp-help-and-community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can view Microsoft developer content online. This content is updated regular
2424

2525
You can also download and view the content locally in the offline Help Viewer. The offline documentation is organized by books of related content, which are also updated periodically. You can download the books you're interested in as they become available. For more information, see [Microsoft Help Viewer](/visualstudio/ide/microsoft-help-viewer).
2626

27-
Many sections of the documentation are also available in PDF form. These sections have a **Download PDF** link below the table of contents on docs.microsoft.com.
27+
Many sections of the documentation are also available in PDF form. These sections have a **Download PDF** link below the table of contents on Microsoft Docs.
2828

2929
## Related sites
3030

docs/overview/visual-cpp-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.assetid: 76798022-5886-48e7-a7f2-f99352b15cbf
99

1010
Samples for Visual Studio C++ are available on the web. Microsoft has produced many C++ samples that demonstrate different functionalities across multiple technologies. Here are a few of the places to find additional samples:
1111

12-
- [Microsoft Docs samples - C++](/samples/browse/?term=c%2B%2B)
12+
- [C++ code samples](/samples/browse/?term=c%2B%2B)
1313

1414
- [Windows samples on GitHub](https://microsoft.github.io/windows/)
1515

docs/overview/what-s-new-for-cpp-2019.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ IncrediBuild is included as an optional component in the **Desktop development w
504504
- MFC class from ActiveX control
505505
- MFC class from Type Lib.
506506

507-
Sample code for these technologies is archived at Microsoft Docs and the VCSamples GitHub repository.
507+
Sample code for these technologies is archived in Microsoft Docs and the VCSamples GitHub repository.
508508

509509
- The Windows 8.1 Software Development Kit (SDK) is no longer available in the Visual Studio installer. We recommend you upgrade your C++ projects to the latest Windows SDK. If you have a hard dependency on 8.1, you can download it from the Windows SDK archive.
510510

docs/overview/whats-new-cpp-docs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ This article lists major changes to the Microsoft C++ docs July 2021 through Oct
268268

269269
## Community contributors
270270

271-
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See [Microsoft Docs contributor guide overview](/contribute/) if you'd like to learn how to contribute.
272-
271+
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See our [contributor guide overview](/contribute/) if you'd like to learn how to contribute.
272+
s
273273
- [mohammad-ghasemi-dev](https://github.com/mohammad-ghasemi-dev) (5)
274274
- [Jaiganeshkumaran](https://github.com/Jaiganeshkumaran) - Jaiganesh Kumaran (2)
275275
- [workingjubilee](https://github.com/workingjubilee) - Jubilee (2)
@@ -546,7 +546,7 @@ Many articles were updated to prevent the machine translation of code elements.
546546

547547
#### Community contributors
548548

549-
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See [Microsoft Docs contributor guide overview](/contribute/) if you'd like to learn how to contribute.
549+
The following people contributed to the C++, C, and Assembler docs during this period. Thank you! See our [contributor guide overview](/contribute/) if you'd like to learn how to contribute.
550550

551551
- [0xbadfca11](https://github.com/0xbadfca11) (1)
552552
- [bclehmann](https://github.com/bclehmann) - Benjamin Lehmann (1)

0 commit comments

Comments
 (0)