diff --git a/README.md b/README.md index 23ad9d4..6259ac4 100644 --- a/README.md +++ b/README.md @@ -511,8 +511,9 @@ auto from = // Get current time_point // ... do some work auto to = // Get current time_point high_resolution_clock::now(); -using ms = // Compute duration in milliseconds +using ms = // Define ms as floating point duration duration; + // Compute duration in milliseconds cout << duration_cast(to - from) .count() << "ms"; ```