Skip to content

Commit 171f14e

Browse files
authored
Use actual link instead of aka.ms (#48899)
1 parent eec3f16 commit 171f14e

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

docs/standard/serialization/system-text-json/customize-properties.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Use built-in serialization attributes.
259259
Here's a more complete version of the example that includes a simple class.
260260

261261
```copilot-prompt
262-
Take this C# class:
262+
Take this C# class:
263263
public class WeatherForecast
264264
{
265265
public DateTime Date { get; set; }
@@ -273,7 +273,9 @@ change the serialized property name to use underscores between words.
273273
Use built-in serialization attributes.
274274
```
275275

276-
GitHub Copilot is powered by AI, so surprises and mistakes are possible. For more information, see [Copilot FAQs](https://aka.ms/copilot-general-use-faqs).
276+
Review Copilot's suggestions before applying them.
277+
278+
For more information about GitHub Copilot, see GitHub's [FAQs](https://github.com/features/copilot#faq).
277279

278280
## See also
279281

docs/standard/serialization/system-text-json/deserialization.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ Map property names & values.
9999
Provide example output.
100100
```
101101

102-
GitHub Copilot is powered by AI, so surprises and mistakes are possible. For more information, see [Copilot FAQs](https://aka.ms/copilot-general-use-faqs).
102+
Review Copilot's suggestions before applying them.
103+
104+
For more information about GitHub Copilot, see GitHub's [FAQs](https://github.com/features/copilot#faq).
103105

104106
## See also
105107

docs/standard/serialization/system-text-json/how-to.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ The object contains the following fields: FirstName (string), Lastname (string),
120120
Provide example output.
121121
```
122122

123-
GitHub Copilot is powered by AI, so surprises and mistakes are possible. For more information, see [Copilot FAQs](https://aka.ms/copilot-general-use-faqs).
123+
Review Copilot's suggestions before applying them.
124+
125+
For more information about GitHub Copilot, see GitHub's [FAQs](https://github.com/features/copilot#faq).
124126

125127
## See also
126128

docs/standard/serialization/system-text-json/migrate-from-newtonsoft.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,14 +647,16 @@ Here's an example prompt you can use in Visual Studio Copilot Chat to migrate a
647647

648648
```copilot-prompt
649649
Convert all serialization code in this #solution from Newtonsoft.Json to System.Text.Json, using the recommended approach for my current .NET version.
650-
- Update attributes and properties, including rules for skipping or renaming during serialization
650+
- Update attributes and properties, including rules for skipping or renaming during serialization
651651
- Ensure polymorphic serialization continues to work correctly
652652
- Respect existing custom converters and project-level settings (for example, from the Utilities folder or appsettings.json)
653653
- Update related unit tests and highlight any potential breaking changes
654654
- Generate a migration summary
655655
```
656656

657-
Review Copilot's suggestions before applying. For more information, see [Copilot FAQs](https://aka.ms/copilot-general-use-faqs).
657+
Review Copilot's suggestions before applying them.
658+
659+
For more information about GitHub Copilot, see GitHub's [FAQs](https://github.com/features/copilot#faq).
658660

659661
## Additional resources
660662

0 commit comments

Comments
 (0)