Skip to content

Commit cffb982

Browse files
authored
Fix indent
1 parent 0ae74c7 commit cffb982

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/debugger/debug-interface-access/idiaenumdebugstreams-item.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ Retrieves a debug stream by means of an index or name.
1919
## Syntax
2020

2121
```C++
22-
HRESULT Item ( 
23-
VARIANT index,
24-
IDiaEnumDebugStreamData** stream
22+
HRESULT Item (
23+
VARIANT index,
24+
IDiaEnumDebugStreamData** stream
2525
);
2626
```
2727

2828
#### Parameters
29-
index
29+
index
3030
[in] Index or name of the debug stream to be retrieved. If an integer variant is used, it must be in the range 0 to `count`-1, where `count` is as returned by the [IDiaEnumDebugStreams::get_Count](../../debugger/debug-interface-access/idiaenumdebugstreams-get-count.md) method.
3131

32-
stream
32+
stream
3333
[out] Returns an [IDiaEnumDebugStreamData](../../debugger/debug-interface-access/idiaenumdebugstreamdata.md) object representing the specified debug stream.
3434

3535
## Return Value
@@ -53,7 +53,7 @@ IDiaEnumDebugStreamData *GetStreamData(IDiaEnumDebugStreams *pStreamList,
5353
vIndex.lVal = whichStream;
5454
if (pStreamList->Item(vIndex,&pStreamData) != S_OK)
5555
{
56-
std::cerr << "Error retrieving stream " << whichStream << std::endl;
56+
std::cerr << "Error retrieving stream " << whichStream << std::endl;
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)