Skip to content

Commit 0b03eed

Browse files
author
Colin Robertson
committed
Fix leading space issues
1 parent 1f1eedc commit 0b03eed

File tree

100 files changed

+1211
-1182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+1211
-1182
lines changed

docs/standard-library/1-object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Placeholders for replaceable arguments.
2222
namespace placeholders {
2323
extern unspecified _1,
2424
_2, ... _M
25-
} // namespace placeholders (within std)
25+
} // namespace placeholders (within std)
2626
```
2727
2828
## Remarks

docs/standard-library/add-rvalue-reference-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ All static_assert tests of add_rvalue_reference passed.
7070

7171
## Requirements
7272

73-
Header: \<type_traits>
73+
Header: \<type_traits>
7474
Namespace: std
7575

7676
## See also

docs/standard-library/algorithm-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3650,7 +3650,7 @@ constexpr const Type& min(
36503650
const Type& right,
36513651
BinaryPredicate comp);
36523652
template<class Type>
3653-
constexpr Type min(
3653+
constexpr Type min(
36543654
initializer_list<Type> );
36553655
template<class Type, class Pr>
36563656
constexpr Type min(

docs/standard-library/bad-alloc-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ bad allocation
6969

7070
## See Also
7171

72-
[exception Class](../standard-library/exception-class.md)
73-
[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)
72+
[exception Class](../standard-library/exception-class.md)<br/>
73+
[Thread Safety in the C++ Standard Library](../standard-library/thread-safety-in-the-cpp-standard-library.md)

docs/standard-library/bad-function-call-class.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ Reports a bad function call.
1919
## Syntax
2020

2121
```cpp
22-
class bad_function_call
23-
: public std::exception {
24-
};
22+
class bad_function_call : public std::exception {};
2523
```
2624
2725
## Remarks

docs/standard-library/bad-weak-ptr-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Reports bad weak_ptr exception.
2020

2121
```cpp
2222
class bad_weak_ptr : public std::exception
23-
{
23+
{
2424
public:
2525
bad_weak_ptr();
2626
const char *what() throw();
27-
};
27+
};
2828
```
2929

3030
## Remarks

docs/standard-library/basic-filebuf-class.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ class basic_filebuf : public basic_streambuf<Elem, Tr>
2626
### Parameters
2727
2828
*Elem*<br/>
29-
The basic element of the file buffer.
29+
The basic element of the file buffer.
3030
3131
*Tr*<br/>
32-
The traits of the basic element of the file buffer (usually `char_traits`< `Elem`>).
32+
The traits of the basic element of the file buffer (usually `char_traits`< `Elem`>).
3333
3434
## Remarks
3535
@@ -368,13 +368,13 @@ basic_filebuf<Elem, Tr> *open(
368368
### Parameters
369369
370370
*_Filename*<br/>
371-
The name of the file to open.
371+
The name of the file to open.
372372
373373
*_Mode*<br/>
374-
One of the enumerations in [ios_base::openmode](../standard-library/ios-base-class.md#openmode).
374+
One of the enumerations in [ios_base::openmode](../standard-library/ios-base-class.md#openmode).
375375
376376
*_Prot*<br/>
377-
The default file opening protection, equivalent to the *shflag* parameter in [_fsopen, _wfsopen](../c-runtime-library/reference/fsopen-wfsopen.md).
377+
The default file opening protection, equivalent to the *shflag* parameter in [_fsopen, _wfsopen](../c-runtime-library/reference/fsopen-wfsopen.md).
378378
379379
### Return Value
380380
@@ -417,7 +417,7 @@ basic_filebuf& operator=(basic_filebuf&& right);
417417
### Parameters
418418

419419
*right*<br/>
420-
An rvalue reference to a [basic_filebuf](../standard-library/basic-filebuf-class.md) object.
420+
An rvalue reference to a [basic_filebuf](../standard-library/basic-filebuf-class.md) object.
421421

422422
### Return Value
423423

@@ -438,7 +438,7 @@ virtual int_type overflow(int_type _Meta = traits_type::eof);
438438
### Parameters
439439
440440
*_Meta*<br/>
441-
The character to insert into the buffer or `traits_type::eof`.
441+
The character to insert into the buffer or `traits_type::eof`.
442442
443443
### Return Value
444444
@@ -465,7 +465,7 @@ virtual int_type pbackfail(int_type _Meta = traits_type::eof);
465465
### Parameters
466466

467467
*_Meta*<br/>
468-
The character to insert into the buffer, or `traits_type::eof`.
468+
The character to insert into the buffer, or `traits_type::eof`.
469469

470470
### Return Value
471471

@@ -502,13 +502,13 @@ virtual pos_type seekoff(off_type _Off,
502502
### Parameters
503503
504504
*_Off*<br/>
505-
The position to seek for relative to *_Way*.
505+
The position to seek for relative to *_Way*.
506506
507507
*_Way*<br/>
508-
The starting point for offset operations. See [seekdir](../standard-library/ios-base-class.md#seekdir) for possible values.
508+
The starting point for offset operations. See [seekdir](../standard-library/ios-base-class.md#seekdir) for possible values.
509509
510510
*_Which*<br/>
511-
Specifies the mode for the pointer position. The default is to allow you to modify the read and write positions.
511+
Specifies the mode for the pointer position. The default is to allow you to modify the read and write positions.
512512
513513
### Return Value
514514
@@ -533,10 +533,10 @@ virtual pos_type seekpos(pos_type _Sp, ios_base::openmode _Which = ios_base::in
533533
### Parameters
534534

535535
*_Sp*<br/>
536-
The position to seek for.
536+
The position to seek for.
537537

538538
*_Which*<br/>
539-
Specifies the mode for the pointer position. The default is to allow you to modify the read and write positions.
539+
Specifies the mode for the pointer position. The default is to allow you to modify the read and write positions.
540540

541541
### Return Value
542542

@@ -563,10 +563,10 @@ virtual basic_streambuf<Elem, Tr> *setbuf(
563563
### Parameters
564564
565565
*_Buffer*<br/>
566-
Pointer to a buffer.
566+
Pointer to a buffer.
567567
568568
*count*<br/>
569-
Size of the buffer.
569+
Size of the buffer.
570570
571571
### Return Value
572572
@@ -587,7 +587,7 @@ void swap(basic_filebuf& right);
587587
### Parameters
588588

589589
*right*<br/>
590-
An `lvalue` reference to another `basic_filebuf`.
590+
An `lvalue` reference to another `basic_filebuf`.
591591

592592
## <a name="sync"></a> basic_filebuf::sync
593593

docs/standard-library/basic-ios-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ void clear(io_state state);
170170
171171
### Parameters
172172
173-
*state*
173+
*state*<br/>
174174
(Optional) The flags you want to set after clearing all flags. Defaults to `goodbit`.
175175
176-
*reraise*
176+
*reraise*<br/>
177177
(Optional) Specifies whether the exception should be re-raised. Defaults to **false** (will not re-raise the exception).
178178
179179
### Remarks

docs/standard-library/basic-string-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3860,10 +3860,10 @@ The C-string that is to be a source of characters for the operand string.
38603860
*_Ch*<br/>
38613861
The character to be copied into the operand string.
38623862
3863-
* first0*
3863+
*first0*<br/>
38643864
An iterator addressing the first character to be removed in the operand string.
38653865
3866-
* last0*
3866+
*last0*<br/>
38673867
An iterator addressing the last character to be removed in the operand string.
38683868
38693869
*first*<br/>

0 commit comments

Comments
 (0)