diff options
author | Eric Fiselier <eric@efcs.ca> | 2018-07-25 10:22:07 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2018-07-25 10:22:07 +0000 |
commit | b54393e63844779cb767ca6e8585dd63d6f3dbd0 (patch) | |
tree | 234fc85099d5f1a01243359c9a9fbe90f4c62c83 /libcxx/docs/DesignDocs | |
parent | cf699ad9ab458ed94de8a4e772534ff4a23c8933 (diff) | |
download | bcm5719-llvm-b54393e63844779cb767ca6e8585dd63d6f3dbd0.tar.gz bcm5719-llvm-b54393e63844779cb767ca6e8585dd63d6f3dbd0.zip |
Fix another typo in the FileTimeType docs
llvm-svn: 337900
Diffstat (limited to 'libcxx/docs/DesignDocs')
-rw-r--r-- | libcxx/docs/DesignDocs/FileTimeType.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/docs/DesignDocs/FileTimeType.rst b/libcxx/docs/DesignDocs/FileTimeType.rst index ed62a0a6c07..4686e0aef72 100644 --- a/libcxx/docs/DesignDocs/FileTimeType.rst +++ b/libcxx/docs/DesignDocs/FileTimeType.rst @@ -224,7 +224,7 @@ code in some way: // Implicit truncation during conversion bug. intmax_t get_time_in_seconds(path p) { - using fs_seconds = duration<file_time_type::rep, /* default ration */>; + using fs_seconds = duration<file_time_type::rep, ratio<1, 1> >; auto tp = last_write_time(p); // This works with truncation for __int128_t, but what does it do for |