| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0005486 | OCaml | OCaml documentation | public | 2012-01-20 03:02 | 2012-01-20 07:31 |
|
| Reporter | blue_prawn | |
| Assigned To | frisch | |
| Priority | none | Severity | trivial | Reproducibility | always |
| Status | resolved | Resolution | no change required | |
| Platform | noarch | OS | | OS Version | |
| Product Version | 3.12.1 | |
| Target Version | | Fixed in Version | | |
|
| Summary | 0005486: type Unix.tm.tm_sec documentation |
| Description | tm_sec : int; (* Seconds 0..60 *)
the range is in fact 0..59 |
| Tags | No tags attached. |
|
| Attached Files | unix_tm_sec_0_59.patch [^] (463 bytes) 2012-01-20 03:02 [Show Content] [Hide Content]--- unix.mli.orig 2012-01-20 03:00:11.000000000 +0100
+++ unix.mli 2012-01-20 03:00:42.000000000 +0100
@@ -710,7 +710,7 @@
(** The execution times (CPU times) of a process. *)
type tm =
- { tm_sec : int; (** Seconds 0..60 *)
+ { tm_sec : int; (** Seconds 0..59 *)
tm_min : int; (** Minutes 0..59 *)
tm_hour : int; (** Hours 0..23 *)
tm_mday : int; (** Day of month 1..31 *)
|
|