-
Notifications
You must be signed in to change notification settings - Fork 982
Convert (/cpp links to relative
#5745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert (/cpp links to relative
#5745
Conversation
|
@Rageking8 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
|
Learn Build status updates of commit 0d4dc23: ✅ Validation status: passed
For more details, please refer to the build report. |
| In the C++ standard library, the [`basic_string`](../standard-library/basic-string-class.md) type is specialized for both narrow and wide strings. Use `std::string` when the characters are of type **`char`**, `std::u8string` when the characters are of type **`char8_t`**, `std::u16string` when the characters are of type **`char16_t`**, `std::u32string` when the characters are of type **`char32_t`**, and `std::wstring` when the characters are of type **`wchar_t`**. | ||
| Other types that represent text, including [`std::stringstream`](/cpp/standard-library/sstream-typedefs/#stringstream) and [`std::cout`](/cpp/standard-library/iostream#cout) have specializations for narrow and wide strings. | ||
| Other types that represent text, including [`std::stringstream`](../standard-library/sstream-typedefs.md#stringstream) and [`std::cout`](../standard-library/iostream.md#cout) have specializations for narrow and wide strings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed the rogue forward slash here.
| ## Debug injected code | ||
| Using attributes can greatly simplify C++ programming. For more information, see [Concepts](/cpp/windows/attributed-programming-concepts). Some attributes are interpreted directly by the compiler. Other attributes inject code into the program source, which the compiler then compiles. This injected code makes programming easier by reducing the amount of code you have to write. Sometimes, however, a bug may cause your application to fail while it is executing injected code. When this happens, you will probably want to look at the injected code. Visual Studio provides two ways for you to see injected code: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "For more information" sentence is removed as the link just redirects back to this topic:
cpp-docs/.openpublishing.redirection.json
Lines 11044 to 11045 in 2643b99
| "source_path": "docs/windows/attributed-programming-concepts.md", | |
| "redirect_url": "/cpp/windows/attributes/cpp-attributes-com-net", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps we meant "for more information, read it again" ;-)
|
@TylerMSFT - Can you review the proposed changes? Editorial Changes LGTM. IMPORTANT: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
TylerMSFT
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As they say, it's all relative...
|
#sign-off |
Prefer regular relative links to maintain uniformity with other links, and allow navigation on GitHub/Visual Studio Code (the
(/cpplinks don't work here).