Skip to content

Commit 4a0fa2a

Browse files
authored
Resolve broken comments in code
1 parent 56a5ce8 commit 4a0fa2a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/c-runtime-library/reference/calloc-dbg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ int main( void )
9999
else
100100
printf( "Problem allocating memory\n" );
101101

102-
/ _free_dbg must be called to free CLIENT type blocks
102+
// _free_dbg must be called to free CLIENT type blocks
103103
free( bufferN );
104104
_free_dbg( bufferC, _CLIENT_BLOCK );
105105
}

docs/dotnet/queue-stl-clr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
description: "Learn more about: queue (STL/CLR)"
32
title: "queue (STL/CLR)"
3+
description: "Learn more about: queue (STL/CLR)"
44
ms.date: "4/20/2023"
55
ms.topic: "reference"
66
f1_keywords: ["cliext::queue", "cliext::queue::assign", "cliext::queue::back", "cliext::queue::back_item", "cliext::queue::const_reference", "cliext::queue::container_type", "cliext::queue::difference_type", "cliext::queue::empty", "cliext::queue::front", "cliext::queue::front_item", "cliext::queue::generic_container", "cliext::queue::generic_value", "cliext::queue::get_container", "cliext::queue::operator=", "cliext::queue::pop", "cliext::queue::push", "cliext::queue::queue", "cliext::queue::reference", "cliext::queue::size", "cliext::queue::size_type", "cliext::queue::to_array", "cliext::queue::value_type"]
@@ -1417,7 +1417,7 @@ int main()
14171417
c2.push(L'b');
14181418
c2.push(L'd');
14191419

1420-
/ / display contents "a b d"
1420+
// display contents "a b d"
14211421
for each (wchar_t elem in c2.get_container())
14221422
System::Console::Write("{0} ", elem);
14231423
System::Console::WriteLine();

docs/standard-library/deque-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ None of the constructors perform any interim reallocations.
720720
### Example
721721
722722
```cpp
723-
/ compile with: /EHsc
723+
// compile with: /EHsc
724724
#include <deque>
725725
#include <iostream>
726726
#include <forward_list>

0 commit comments

Comments
 (0)