Skip to content

Commit

Permalink
コメントの誤りを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kenichiice committed Aug 23, 2023
1 parent 03ff589 commit 86bab47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference/chrono/duration/op_constructor.md
Expand Up @@ -45,7 +45,7 @@ using std::chrono::duration;
int main()
{
duration<int, std::milli> d1; // デフォルト構築 d1.count()は未初期化の値
duration<int, std::milli> d2 {}; // デフォルト構築 d1.count()の値は0
duration<int, std::milli> d2 {}; // デフォルト構築 d2.count()の値は0
duration<int, std::milli> d3(3); // 値を指定して構築(ミリ秒)
duration<int, std::micro> d4 = d3; // ミリ秒からマイクロ秒に変換
Expand Down

0 comments on commit 86bab47

Please sign in to comment.