Skip to content

Commit

Permalink
fix documentation for %C
Browse files Browse the repository at this point in the history
  • Loading branch information
soenkehahn authored and jhpratt committed Mar 27, 2021
1 parent cdd615d commit 6bf1f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
//! | `%b` | Abbreviated month name | `Aug` |
//! | `%B` | Full month name | `August` |
//! | `%c` | Date and time representation, equivalent to `%a %b %-d %-H:%M:%S %-Y` | `Thu Aug 23 14:55:02 2001` |
//! | `%C` | Year divided by 100 and truncated to integer (`00`-`99`) | `20` |
//! | `%C` | Year divided by 100 and truncated to integer (`00`-`999`) | `20` |
//! | `%d` | Day of the month, zero-padded (`01`-`31`) | `23` |
//! | `%D` | Short MM/DD/YY date, equivalent to `%-m/%d/%y` | `8/23/01` |
//! | `%F` | Short YYYY-MM-DD date, equivalent to `%-Y-%m-%d` | `2001-08-23` |
Expand Down

0 comments on commit 6bf1f0b

Please sign in to comment.