@@ -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
0 commit comments