Normalize Wikipedia and Microsoft links in CFamily (#3321)

Update docs.microsoft.com to learn.microsoft.com.
This commit is contained in:
Marco Borgeaud 2023-10-18 14:28:32 +02:00 committed by GitHub
parent ab6d0f08b7
commit 41ee3f5305
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

@ -44,7 +44,7 @@ When web pages have massively long names like "Java™ Platform, Standard Editio
* AWS Documentation - https://docs.aws.amazon.com/ * AWS Documentation - https://docs.aws.amazon.com/
* AWS blog - https://aws.amazon.com/blogs * AWS blog - https://aws.amazon.com/blogs
* Azure Documentation - https://learn.microsoft.com/en-us/azure/?product=popular * Azure Documentation - https://learn.microsoft.com/en-us/azure/?product=popular
* CERT - https://wiki.sei.cmu.edu/confluence/display/seccode * CERT - https://wiki.sei.cmu.edu/confluence/display/seccode
* {cpp} reference - https://en.cppreference.com/w/ * {cpp} reference - https://en.cppreference.com/w/
* C++ Core Guidelines - https://github.com/isocpp/CppCoreGuidelines/blob/036324/CppCoreGuidelines.md * C++ Core Guidelines - https://github.com/isocpp/CppCoreGuidelines/blob/036324/CppCoreGuidelines.md
* CVE - https://cve.mitre.org * CVE - https://cve.mitre.org
@ -54,30 +54,30 @@ When web pages have massively long names like "Java™ Platform, Standard Editio
* Java Documentation - https://docs.oracle.com/en/java/ * Java Documentation - https://docs.oracle.com/en/java/
* Kotlin Documentation - https://kotlinlang.org/docs/home.html * Kotlin Documentation - https://kotlinlang.org/docs/home.html
* Kubernetes Documentation - https://kubernetes.io/docs/home/ * Kubernetes Documentation - https://kubernetes.io/docs/home/
* Microsoft Learn - https://learn.microsoft.com/en-us/docs/ * Microsoft Learn - https://learn.microsoft.com/en-us/
* Microsoft Developer Blog - https://devblogs.microsoft.com/ * Microsoft Developer Blog - https://devblogs.microsoft.com/
* MDN web docs - https://developer.mozilla.org/en-US/ * MDN web docs - https://developer.mozilla.org/en-US/
* Medium - https://medium.com/ * Medium - https://medium.com/
* MITRE - https://attack.mitre.org/ * MITRE - https://attack.mitre.org/
* Mockito - https://site.mockito.org/javadoc/current/overview-summary.html * Mockito - https://site.mockito.org/javadoc/current/overview-summary.html
* The Open Group - https://www.opengroup.org/ * The Open Group - https://www.opengroup.org/
* OWASP -https://owasp.org/ * OWASP - https://owasp.org/
* PEP - https://peps.python.org/ * PEP - https://peps.python.org/
* PHP Documentation - https://www.php.net/docs.php * PHP Documentation - https://www.php.net/docs.php
* PHP Tutorials - https://www.phptutorial.net/ * PHP Tutorials - https://www.phptutorial.net/
* PEP 8 Style Guide for Python Code - https://peps.python.org/pep-0008/ * PEP 8 - Style Guide for Python Code - https://peps.python.org/pep-0008/
* Python Documentation - https://docs.python.org/ * Python Documentation - https://docs.python.org/
* React Documentation - https://reactjs.org/ * React Documentation - https://reactjs.org/
* Rhino Security Labs - https://rhinosecuritylabs.com/ * Rhino Security Labs - https://rhinosecuritylabs.com/
* SANS -https://www.sans.org/ * SANS - https://www.sans.org/
* SAP Documentation - http://help.sap.com/abapdocu_702/en/abenabap.htm * SAP Documentation - http://help.sap.com/abapdocu_702/en/abenabap.htm
* SonarQube Documentation - https://docs.sonarqube.org/latest/ * SonarQube Documentation - https://docs.sonarqube.org/latest/
* Sonar - https://www.sonarsource.com/ * Sonar - https://www.sonarsource.com/
* Sonar Blog - https://www.sonarsource.com/blog/ * Sonar Blog - https://www.sonarsource.com/blog/
* Stack Overflow - https://stackoverflow.com/ * Stack Overflow - https://stackoverflow.com/
* Symfony - https://symfony.com/doc/current/index.html * Symfony - https://symfony.com/doc/current/index.html
* Test NG Documentation - https://testng.org/doc/documentation-main.html * Test NG Documentation - https://testng.org/doc/documentation-main.html
* W3Schools - https://www.w3schools.com/ * W3Schools - https://www.w3schools.com/
* WCAG - https://www.w3.org/WAI/standards-guidelines/wcag/ * WCAG - https://www.w3.org/WAI/standards-guidelines/wcag/
* Wikipedia - https://en.wikipedia.org * Wikipedia - https://en.wikipedia.org

View File

@ -8,7 +8,7 @@ This rule raises an issue whenever the file specified in a ``++#include++`` dire
== Resources == Resources
* https://docs.microsoft.com/en-us/cpp/preprocessor/hash-include-directive-c-cpp[MSVC documentation] * Microsoft Learn - https://learn.microsoft.com/en-us/cpp/preprocessor/hash-include-directive-c-cpp[``++#include++`` directive (C/C++)]
ifdef::env-github,rspecator-view[] ifdef::env-github,rspecator-view[]

View File

@ -45,7 +45,7 @@ port = ntohs(sa->sin_port);
== Resources == Resources
* https://tools.ietf.org/html/rfc1700[RFC-1700] * https://tools.ietf.org/html/rfc1700[RFC-1700]
* https://en.wikipedia.org/wiki/Endianness[Endianness] * Wikipedia - https://en.wikipedia.org/wiki/Endianness[Endianness]
ifdef::env-github,rspecator-view[] ifdef::env-github,rspecator-view[]

View File

@ -214,7 +214,7 @@ the ABA problem, where `A` and `B` refers to the values of the resource.
* {cpp} reference - https://en.cppreference.com/w/cpp/thread/mutex[`std::mutex`] * {cpp} reference - https://en.cppreference.com/w/cpp/thread/mutex[`std::mutex`]
* {cpp} reference - https://en.cppreference.com/w/cpp/thread/scoped_lock[`std::scoped_lock`] * {cpp} reference - https://en.cppreference.com/w/cpp/thread/scoped_lock[`std::scoped_lock`]
* https://cwe.mitre.org/data/definitions/367[MITRE, CWE-367] - Time-of-check Time-of-use (TOCTOU) Race Condition * https://cwe.mitre.org/data/definitions/367[MITRE, CWE-367] - Time-of-check Time-of-use (TOCTOU) Race Condition
* https://en.wikipedia.org/wiki/ABA_problem[ABA problem] * Wikipedia - https://en.wikipedia.org/wiki/ABA_problem[ABA problem]
ifdef::env-github,rspecator-view[] ifdef::env-github,rspecator-view[]