Skip to content

Commit

Permalink
fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
suomesta committed Mar 31, 2023
1 parent 363b738 commit f9f1c46
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion reference/bit/rotr.md
Expand Up @@ -26,7 +26,7 @@ namespace std {
- `r`が0である場合は`x`が返る
- `r`が正である場合は`(x >> r) | (x << (N - r))`が返る
- `r`が負である場合は[`rotl`](rotr.md)`(x, -r)`が返る
- `r`が負である場合は[`rotl`](rotl.md)`(x, -r)`が返る
## 例外
Expand Down
2 changes: 1 addition & 1 deletion reference/format/format_kind.md
Expand Up @@ -57,7 +57,7 @@ Rangeの書式種別を取得する変数テンプレート。
## 関連項目
- [`format_kind`](range_format.md)
- [`range_format`](range_format.md)
- [`formatter`](formatter.md)
Expand Down
2 changes: 1 addition & 1 deletion reference/ios/io_errc.md
Expand Up @@ -15,7 +15,7 @@ namespace std {
## 概要
入出力操作に関するエラーの種別を表す列挙型。エラーのカテゴリは [`iostream_category`](iostream_category.md)`()` で取得できる。
[`is_error_code_enum`](is_error_code_enum.md) の特殊化がされていることからわかるように、本列挙型は [`error_code`](../system_error/error_code.md) として使うことを意図しており、暗黙的に [`error_code`](../system_error/error_code.md) への変換が可能である。
なお、[`is_error_condition_enum`](../system_error/is_error_condition_enum.md) の特殊化はされていないため、本列挙型から [`error_condition`](../system_error/error_condition.md) に暗黙的に変換する事は出来ないが、[`make_eror_condtion`](make_error_condition.md)`()` の呼び出し、および、一旦 [`error_code`](../system_error/error_code.md) に変換してから [`error_code`](../system_error/error_code.md)`::`[`default_error_condition`](../system_error/error_code/default_error_condition.md) を使用して変換する、などが可能である。
なお、[`is_error_condition_enum`](../system_error/is_error_condition_enum.md) の特殊化はされていないため、本列挙型から [`error_condition`](../system_error/error_condition.md) に暗黙的に変換する事は出来ないが、[`make_eror_condition`](make_error_condition.md)`()` の呼び出し、および、一旦 [`error_code`](../system_error/error_code.md) に変換してから [`error_code`](../system_error/error_code.md)`::`[`default_error_condition`](../system_error/error_code/default_error_condition.md) を使用して変換する、などが可能である。
列挙値は唯一 `stream` のみが定義されている。
Expand Down
2 changes: 1 addition & 1 deletion reference/string/char_traits/to_int_type.md
Expand Up @@ -14,7 +14,7 @@ static constexpr int_type to_int_type(char_type c) noexcept; // C++11
## 戻り値
[`to_int_type`](to_int_type.md)と[`eq_int_type`](eq_int_type.md)の定義によって制約される文字`e`を返す。
[`to_char_type`](to_char_type.md)と[`eq_int_type`](eq_int_type.md)の定義によって制約される文字`e`を返す。
## 計算量
Expand Down

0 comments on commit f9f1c46

Please sign in to comment.