Skip to content

Commit c576264

Browse files
committed
improve some decoration in streambuf
1 parent 6dbd0b7 commit c576264

File tree

21 files changed

+37
-36
lines changed

21 files changed

+37
-36
lines changed

reference/streambuf/basic_streambuf/in_avail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace std {
2121
現在の入力列の読み取り可能な文字数を返す。
2222
2323
## 戻り値
24-
- 読み取り可能な文字列が存在する場合、[`egptr()`](egptr.md) - [`gptr()`](gptr.md)を返す。
24+
- 読み取り可能な文字列が存在する場合、[`egptr()`](egptr.md)` - `[`gptr()`](gptr.md)を返す。
2525
- それ以外の場合、[`showmanyc()`](showmanyc.md)を返す。
2626
2727
## 例

reference/streambuf/basic_streambuf/op_assign.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ namespace std {
2121
入力部分列ポインタ、出力部分列ポインタ、ロケールをコピーする。
2222
2323
## 事後条件
24-
- [`eback()`](eback.md) == rhs.[`eback()`](eback.md)
25-
- [`gptr()`](gptr.md) == rhs.[`gptr()`](gptr.md)
26-
- [`egptr()`](egptr.md) == rhs.[`egptr()`](egptr.md)
27-
- [`pbase()`](pbase.md) == rhs.[`pbase()`](pbase.md)
28-
- [`pptr()`](pptr.md) == rhs.[`pptr()`](pptr.md)
29-
- [`epptr()`](epptr.md) == rhs.[`epptr()`](epptr.md)
30-
- [`getloc()`](getloc.md) == rhs.[`getloc()`](getloc.md)
24+
- [`eback()`](eback.md) == `rhs.`[`eback()`](eback.md)
25+
- [`gptr()`](gptr.md) == `rhs.`[`gptr()`](gptr.md)
26+
- [`egptr()`](egptr.md) == `rhs.`[`egptr()`](egptr.md)
27+
- [`pbase()`](pbase.md) == `rhs.`[`pbase()`](pbase.md)
28+
- [`pptr()`](pptr.md) == `rhs.`[`pptr()`](pptr.md)
29+
- [`epptr()`](epptr.md) == `rhs.`[`epptr()`](epptr.md)
30+
- [`getloc()`](getloc.md) == `rhs.`[`getloc()`](getloc.md)
3131
3232
## 戻り値
3333
*this。

reference/streambuf/basic_streambuf/op_constructor.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace std {
2525
- (1) :
2626
- 入力列・出力列の各ポインタをヌルにする。
2727
- 現在のグローバルロケールを`locale`デフォルトコンストラクタで取得し、`getloc()`の初期値とする。
28-
- (2) : rhs の入力列・出力列の各ポインタをコピーする。
28+
- (2) : `rhs`の入力列・出力列の各ポインタをコピーする。
2929
3030
3131
## 事後条件
@@ -44,6 +44,7 @@ namespace std {
4444
- `pbase()` == `rhs.pbase()`
4545
- `pptr()` == `rhs.pptr()`
4646
- `epptr()` == `rhs.epptr()`
47+
- `getloc()` == `rhs.getloc()`
4748
4849
4950
## 実装例

reference/streambuf/basic_streambuf/pbump.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace std {
2020
出力部分列の現在位置を指定した量だけ進める。
2121
2222
## 効果
23-
出力部分列の現在位置をnだけ進める
23+
出力部分列の現在位置を`n`だけ進める
2424
2525
## 例
2626
```cpp example

reference/streambuf/basic_streambuf/pubseekoff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace std {
2626
protected virtualの[`seekoff()`](seekoff.md)を呼ぶ。
2727
2828
## 戻り値
29-
[`seekoff`](seekoff.md)(off, way, which)。
29+
[`seekoff`](seekoff.md)`(off, way, which)`
3030
3131
## バージョン
3232
### 言語

reference/streambuf/basic_streambuf/pubseekpos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace std {
2525
protected virtualの[`seekpos()`](seekpos.md)を呼ぶ。
2626
2727
## 戻り値
28-
[`seekpos`](seekpos.md)(sp, which)。
28+
[`seekpos`](seekpos.md)`(sp, which)`
2929
3030
## バージョン
3131
### 言語

reference/streambuf/basic_streambuf/pubsetbuf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ namespace std {
2121
バッファ領域を与える。
2222
2323
## 効果
24-
protected virtualの[`setbuf()`setbuf.md)を呼ぶ。
24+
protected virtualの[`setbuf()`](setbuf.md)を呼ぶ。
2525
2626
## 戻り値
27-
[`setbuf`](setbuf.md)(s, n)。
27+
[`setbuf`](setbuf.md)`(s, n)`
2828
2929
## バージョン
3030
### 言語

reference/streambuf/basic_streambuf/seekoff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace std {
2626
デフォルトでは -1 を返すのみ。(オーバーライドした関数の具体的な動作はそのクラスに委ねられる。)
2727
2828
## 戻り値
29-
pos_type(off_type(-1))。
29+
`pos_type(off_type(-1))`
3030
3131
## バージョン
3232
### 言語

reference/streambuf/basic_streambuf/seekpos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace std {
2525
デフォルトでは -1 を返すのみ。(オーバーライドした関数の具体的な動作はそのクラスに委ねられる。)
2626
2727
## 戻り値
28-
pos_type(off_type(-1))。
28+
`pos_type(off_type(-1))`
2929
3030
## バージョン
3131
### 言語

reference/streambuf/basic_streambuf/setbuf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace std {
2424
デフォルトでは何もしない。(オーバーライドした関数の具体的な動作はそのクラスに委ねられる。)
2525
2626
## 戻り値
27-
*this.
27+
`*this`。
2828
2929
## 例
3030
```cpp example

0 commit comments

Comments
 (0)