Fix code in c++ (#4373)

pull/4381/head
Mikhail Ostashchenko 1 year ago committed by GitHub
parent f2b29f80f9
commit 7072c4cf80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/data/roadmaps/cpp/content/110-stl/103-date-time.md

@ -19,7 +19,7 @@ A `duration` represents a span of time, which can be expressed in various units
int main() {
std::chrono::seconds sec(5);
std::chrono::minutes min(2);
std(chrono)::hours hr(1);
std::chrono::hours hr(1);
return 0;
}
```

Loading…
Cancel
Save