Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dbf0722

Browse files
Merge pull request #5199 from Rageking8/convert-all-right-parenthesis-in-ordered-lists-to-period
Convert all right parenthesis in ordered lists to period
2 parents 0339ece + 575f69c commit dbf0722

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

docs/code-quality/c26488.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: Warning C26488 LIFETIMES_DEREF_NULL_POINTER"
32
title: Warning C26488
3+
description: "Learn more about: Warning C26488 LIFETIMES_DEREF_NULL_POINTER"
44
ms.date: 12/14/2018
55
f1_keywords: ["C26488", "LIFETIMES_DEREF_NULL_POINTER"]
66
helpviewer_keywords: ["C26488"]
7-
ms.assetid: 2ade0d31-f259-49de-8676-cce6092fabfc
87
author: kylereedmsft
98
ms.author: kylereed
109
---
@@ -28,9 +27,9 @@ void ex1()
2827

2928
The Lifetime guidelines from the C++ core guidelines outline a contract that code can follow which will enable more thorough static memory leak and dangling pointer detection. The basic ideas behind the guidelines are:
3029

31-
1) Never dereference an invalid (dangling) or known-null pointer
32-
2) Never return (either formal return or out parameter) any pointer from a function.
33-
3) Never pass an invalid (dangling) pointer to any function.
30+
1. Never dereference an invalid (dangling) or known-null pointer.
31+
1. Never return (either formal return or out parameter) any pointer from a function.
32+
1. Never pass an invalid (dangling) pointer to any function.
3433

3534
## See also
3635

docs/code-quality/c26489.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
description: "Learn more about: Warning C26489 LIFETIMES_DEREF_INVALID_POINTER"
32
title: Warning C26489
3+
description: "Learn more about: Warning C26489 LIFETIMES_DEREF_INVALID_POINTER"
44
ms.date: 12/14/2018
55
f1_keywords: ["C26489", "LIFETIMES_DEREF_INVALID_POINTER"]
66
helpviewer_keywords: ["C26489"]
7-
ms.assetid: 15983d4f-f615-42e7-8521-ee094b87d066
87
author: kylereedmsft
98
ms.author: kylereed
109
---
@@ -30,9 +29,9 @@ int ex1()
3029

3130
The Lifetime guidelines from the C++ core guidelines outline a contract that code can follow which will enable more thorough static memory leak and dangling pointer detection. The basic ideas behind the guidelines are:
3231

33-
1) Never dereference an invalid (dangling) or known-null pointer
34-
2) Never return (either formal return or out parameter) any pointer from a function.
35-
3) Never pass an invalid (dangling) pointer to any function.
32+
1. Never dereference an invalid (dangling) or known-null pointer.
33+
1. Never return (either formal return or out parameter) any pointer from a function.
34+
1. Never pass an invalid (dangling) pointer to any function.
3635

3736
## See also
3837

0 commit comments

Comments
 (0)