Anonymous | Login | Signup for a new account | 2019-02-20 15:19 CET | ![]() |
Main | My View | View Issues | Change Log | Roadmap |
View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | Project | Category | View Status | Date Submitted | Last Update | |||
0004975 | OCaml | ~DO NOT USE (was: OCaml general) | public | 2010-02-10 13:53 | 2010-05-21 13:58 | |||
Reporter | glondu | |||||||
Assigned To | ||||||||
Priority | normal | Severity | trivial | Reproducibility | always | |||
Status | closed | Resolution | fixed | |||||
Platform | OS | OS Version | ||||||
Product Version | 3.11.2 | |||||||
Target Version | Fixed in Version | 3.12.0+dev | ||||||
Summary | 0004975: Spelling errors | |||||||
Description | Hello, The following spelling errors are present in OCaml sources: - overriden (instead of "overridden") - informations (instead of "information", which is uncountable) Best regards, -- Stéphane Glondu | |||||||
Tags | No tags attached. | |||||||
Attached Files | ![]() From be0d29d777a98d6a472688b9fc81336c320b237c Mon Sep 17 00:00:00 2001 From: Stephane Glondu <steph@glondu.net> Date: Wed, 10 Feb 2010 12:07:32 +0100 Subject: [PATCH 1/2] overriden -> overridden Signed-off-by: Stephane Glondu <steph@glondu.net> --- Changes | 2 +- asmcomp/reloadgen.mli | 4 ++-- asmcomp/schedgen.ml | 4 ++-- asmcomp/schedgen.mli | 2 +- asmcomp/selectgen.ml | 2 +- asmcomp/selectgen.mli | 22 +++++++++++----------- driver/main_args.ml | 4 ++-- driver/optmain.ml | 4 ++-- man/ocaml.help | 4 ++-- ocamldoc/odoc_info.mli | 8 ++++---- ocamldoc/odoc_scan.ml | 8 ++++---- otherlibs/labltk/browser/main.ml | 2 +- otherlibs/num/bng.c | 2 +- testlabl/valvirt.diffs | 12 ++++++------ toplevel/opttopmain.ml | 2 +- toplevel/topmain.ml | 2 +- typing/ctype.ml | 2 +- utils/warnings.ml | 6 +++--- 18 files changed, 46 insertions(+), 46 deletions(-) diff --git a/Changes b/Changes index 89b1263..97ae77e 100644 --- a/Changes +++ b/Changes @@ -867,7 +867,7 @@ Type-checking: type of any subexpression in the source file. Works even in the case of a type error (all the types computed up to the error are available). This new feature is also supported by ocamlbrowser. -- Disable "method is overriden" warning when the method was explicitly +- Disable "method is overridden" warning when the method was explicitly redefined as virtual beforehand (i.e. not through inheritance). Typing and semantics are unchanged. diff --git a/asmcomp/reloadgen.mli b/asmcomp/reloadgen.mli index e84a73d..f0d1c78 100644 --- a/asmcomp/reloadgen.mli +++ b/asmcomp/reloadgen.mli @@ -16,10 +16,10 @@ class reload_generic : object method reload_operation : Mach.operation -> Reg.t array -> Reg.t array -> Reg.t array * Reg.t array method reload_test : Mach.test -> Reg.t array -> Reg.t array - (* Can be overriden to reflect instructions that can operate + (* Can be overridden to reflect instructions that can operate directly on stack locations *) method makereg : Reg.t -> Reg.t - (* Can be overriden to avoid creating new registers of some class + (* Can be overridden to avoid creating new registers of some class (i.e. if all "registers" of that class are actually on stack) *) method fundecl : Mach.fundecl -> Mach.fundecl * bool (* The entry point *) diff --git a/asmcomp/schedgen.ml b/asmcomp/schedgen.ml index fae061b..cad4cb5 100644 --- a/asmcomp/schedgen.ml +++ b/asmcomp/schedgen.ml @@ -115,7 +115,7 @@ let some_load = (Iload(Cmm.Word, Arch.identity_addressing)) class virtual scheduler_generic = object (self) (* Determine whether an operation ends a basic block or not. - Can be overriden for some processors to signal specific instructions + Can be overridden for some processors to signal specific instructions that terminate a basic block. *) method oper_in_basic_block = function @@ -137,7 +137,7 @@ method private instr_in_basic_block instr = | _ -> false (* Determine whether an operation is a memory store or a memory load. - Can be overriden for some processors to signal specific + Can be overridden for some processors to signal specific load or store instructions (e.g. on the I386). *) method is_store = function diff --git a/asmcomp/schedgen.mli b/asmcomp/schedgen.mli index 0f54e2d..ab5f072 100644 --- a/asmcomp/schedgen.mli +++ b/asmcomp/schedgen.mli @@ -24,7 +24,7 @@ type code_dag_node = mutable emitted_ancestors: int } class virtual scheduler_generic : object - (* Can be overriden by processor description *) + (* Can be overridden by processor description *) method virtual oper_issue_cycles : Mach.operation -> int (* Number of cycles needed to issue the given operation *) method virtual oper_latency : Mach.operation -> int diff --git a/asmcomp/selectgen.ml b/asmcomp/selectgen.ml index 6089b5a..b27fcb5 100644 --- a/asmcomp/selectgen.ml +++ b/asmcomp/selectgen.ml @@ -373,7 +373,7 @@ method insert_move_results loc res stacksize = if stacksize <> 0 then self#insert(Iop(Istackoffset(-stacksize))) [||] [||]; self#insert_moves loc res -(* Add an Iop opcode. Can be overriden by processor description +(* Add an Iop opcode. Can be overridden by processor description to insert moves before and after the operation, i.e. for two-address instructions, or instructions using dedicated registers. *) diff --git a/asmcomp/selectgen.mli b/asmcomp/selectgen.mli index ed7d591..c7d6ec1 100644 --- a/asmcomp/selectgen.mli +++ b/asmcomp/selectgen.mli @@ -20,7 +20,7 @@ type environment = (Ident.t, Reg.t array) Tbl.t val size_expr : environment -> Cmm.expression -> int class virtual selector_generic : object - (* The following methods must or can be overriden by the processor + (* The following methods must or can be overridden by the processor description *) method virtual is_immediate : int -> bool (* Must be defined to indicate whether a constant is a suitable @@ -29,36 +29,36 @@ class virtual selector_generic : object Cmm.expression -> Arch.addressing_mode * Cmm.expression (* Must be defined to select addressing modes *) method is_simple_expr: Cmm.expression -> bool - (* Can be overriden to reflect special extcalls known to be pure *) + (* Can be overridden to reflect special extcalls known to be pure *) method select_operation : Cmm.operation -> Cmm.expression list -> Mach.operation * Cmm.expression list - (* Can be overriden to deal with special arithmetic instructions *) + (* Can be overridden to deal with special arithmetic instructions *) method select_condition : Cmm.expression -> Mach.test * Cmm.expression - (* Can be overriden to deal with special test instructions *) + (* Can be overridden to deal with special test instructions *) method select_store : Arch.addressing_mode -> Cmm.expression -> Mach.operation * Cmm.expression - (* Can be overriden to deal with special store constant instructions *) + (* Can be overridden to deal with special store constant instructions *) method insert_op : Mach.operation -> Reg.t array -> Reg.t array -> Reg.t array - (* Can be overriden to deal with 2-address instructions + (* Can be overridden to deal with 2-address instructions or instructions with hardwired input/output registers *) method insert_op_debug : Mach.operation -> Debuginfo.t -> Reg.t array -> Reg.t array -> Reg.t array - (* Can be overriden to deal with 2-address instructions + (* Can be overridden to deal with 2-address instructions or instructions with hardwired input/output registers *) method emit_extcall_args : environment -> Cmm.expression list -> Reg.t array * int - (* Can be overriden to deal with stack-based calling conventions *) + (* Can be overridden to deal with stack-based calling conventions *) method emit_stores : environment -> Cmm.expression list -> Reg.t array -> unit - (* Fill a freshly allocated block. Can be overriden for architectures + (* Fill a freshly allocated block. Can be overridden for architectures that do not provide Arch.offset_addressing. *) - (* The following method is the entry point and should not be overriden *) + (* The following method is the entry point and should not be overridden *) method emit_fundecl : Cmm.fundecl -> Mach.fundecl - (* The following methods should not be overriden. They cannot be + (* The following methods should not be overridden. They cannot be declared "private" in the current implementation because they are not always applied to "self", but ideally they should be private. *) method extract : Mach.instruction diff --git a/driver/main_args.ml b/driver/main_args.ml index bb72b79..bd9031f 100644 --- a/driver/main_args.ml +++ b/driver/main_args.ml @@ -137,11 +137,11 @@ struct \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ - \032 M/m enable/disable overriden methods\n\ + \032 M/m enable/disable overridden methods\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ - \032 V/v enable/disable overriden instance variables\n\ + \032 V/v enable/disable overridden instance variables\n\ \032 Y/y enable/disable suspicious unused variables\n\ \032 Z/z enable/disable all other unused variables\n\ \032 X/x enable/disable all other warnings\n\ diff --git a/driver/optmain.ml b/driver/optmain.ml index d2a1853..f93cc32 100644 --- a/driver/optmain.ml +++ b/driver/optmain.ml @@ -174,11 +174,11 @@ let main () = \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ - \032 M/m enable/disable overriden methods\n\ + \032 M/m enable/disable overridden methods\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ - \032 V/v enable/disable overriden instance variables\n\ + \032 V/v enable/disable overridden instance variables\n\ \032 Y/y enable/disable suspicious unused variables\n\ \032 Z/z enable/disable all other unused variables\n\ \032 X/x enable/disable all other warnings\n\ diff --git a/man/ocaml.help b/man/ocaml.help index 466896d..034a519 100644 --- a/man/ocaml.help +++ b/man/ocaml.help @@ -42,7 +42,7 @@ Options are: A/a enable/disable all warnings C/c enable/disable suspicious comment F/f enable/disable partially applied function - M/m enable/disable overriden method + M/m enable/disable overridden method P/p enable/disable partial match S/s enable/disable non-unit statement U/u enable/disable unused match case @@ -91,7 +91,7 @@ Options are: A/a enable/disable all warnings C/c enable/disable suspicious comment F/f enable/disable partially applied function - M/m enable/disable overriden method + M/m enable/disable overridden method P/p enable/disable partial match S/s enable/disable non-unit statement U/u enable/disable unused match case diff --git a/ocamldoc/odoc_info.mli b/ocamldoc/odoc_info.mli index 97c44db..609d5e3 100644 --- a/ocamldoc/odoc_info.mli +++ b/ocamldoc/odoc_info.mli @@ -844,7 +844,7 @@ module Scan : (** This method scan the elements of the given class. *) method scan_class_elements : Class.t_class -> unit - (** Scan of a class. Should not be overriden. It calls [scan_class_pre] + (** Scan of a class. Should not be overridden. It calls [scan_class_pre] and if [scan_class_pre] returns [true], then it calls scan_class_elements.*) method scan_class : Class.t_class -> unit @@ -861,7 +861,7 @@ module Scan : (** This method scan the elements of the given class type. *) method scan_class_type_elements : Class.t_class_type -> unit - (** Scan of a class type. Should not be overriden. It calls [scan_class_type_pre] + (** Scan of a class type. Should not be overridden. It calls [scan_class_type_pre] and if [scan_class_type_pre] returns [true], then it calls scan_class_type_elements.*) method scan_class_type : Class.t_class_type -> unit @@ -878,7 +878,7 @@ module Scan : (** This method scan the elements of the given module. *) method scan_module_elements : Module.t_module -> unit - (** Scan of a module. Should not be overriden. It calls [scan_module_pre] + (** Scan of a module. Should not be overridden. It calls [scan_module_pre] and if [scan_module_pre] returns [true], then it calls scan_module_elements.*) method scan_module : Module.t_module -> unit @@ -895,7 +895,7 @@ module Scan : (** This method scan the elements of the given module type. *) method scan_module_type_elements : Module.t_module_type -> unit - (** Scan of a module type. Should not be overriden. It calls [scan_module_type_pre] + (** Scan of a module type. Should not be overridden. It calls [scan_module_type_pre] and if [scan_module_type_pre] returns [true], then it calls scan_module_type_elements.*) method scan_module_type : Module.t_module_type -> unit diff --git a/ocamldoc/odoc_scan.ml b/ocamldoc/odoc_scan.ml index 2618d06..cfae95e 100644 --- a/ocamldoc/odoc_scan.ml +++ b/ocamldoc/odoc_scan.ml @@ -56,7 +56,7 @@ class scanner = ) (Odoc_class.class_elements c) - (** Scan of a class. Should not be overriden. It calls [scan_class_pre] + (** Scan of a class. Should not be overridden. It calls [scan_class_pre] and if [scan_class_pre] returns [true], then it calls scan_class_elements.*) method scan_class c = if self#scan_class_pre c then self#scan_class_elements c @@ -82,7 +82,7 @@ class scanner = ) (Odoc_class.class_type_elements ct) - (** Scan of a class type. Should not be overriden. It calls [scan_class_type_pre] + (** Scan of a class type. Should not be overridden. It calls [scan_class_type_pre] and if [scan_class_type_pre] returns [true], then it calls scan_class_type_elements.*) method scan_class_type ct = if self#scan_class_type_pre ct then self#scan_class_type_elements ct @@ -113,7 +113,7 @@ class scanner = ) (Odoc_module.module_elements m) - (** Scan of a module. Should not be overriden. It calls [scan_module_pre] + (** Scan of a module. Should not be overridden. It calls [scan_module_pre] and if [scan_module_pre] returns [true], then it calls scan_module_elements.*) method scan_module m = if self#scan_module_pre m then self#scan_module_elements m @@ -144,7 +144,7 @@ class scanner = ) (Odoc_module.module_type_elements mt) - (** Scan of a module type. Should not be overriden. It calls [scan_module_type_pre] + (** Scan of a module type. Should not be overridden. It calls [scan_module_type_pre] and if [scan_module_type_pre] returns [true], then it calls scan_module_type_elements.*) method scan_module_type mt = if self#scan_module_type_pre mt then self#scan_module_type_elements mt diff --git a/otherlibs/labltk/browser/main.ml b/otherlibs/labltk/browser/main.ml index e55ce98..d245c97 100644 --- a/otherlibs/labltk/browser/main.ml +++ b/otherlibs/labltk/browser/main.ml @@ -88,7 +88,7 @@ let _ = \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ - \032 M/m enable/disable overriden method\n\ + \032 M/m enable/disable overridden method\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ diff --git a/otherlibs/num/bng.c b/otherlibs/num/bng.c index f7dcd7d..44ff874 100644 --- a/otherlibs/num/bng.c +++ b/otherlibs/num/bng.c @@ -34,7 +34,7 @@ #include "bng_digit.c" -/**** Operations that cannot be overriden ****/ +/**** Operations that cannot be overridden ****/ /* Return number of leading zero bits in d */ int bng_leading_zero_bits(bngdigit d) diff --git a/testlabl/valvirt.diffs b/testlabl/valvirt.diffs index b8b17ef..2cf5574 100644 --- a/testlabl/valvirt.diffs +++ b/testlabl/valvirt.diffs @@ -25,13 +25,13 @@ diff -u -r1.23 warnings.ml | Unerasable_optional_argument @@ -126,9 +126,9 @@ String.concat " " - ("the following methods are overriden \ + ("the following methods are overridden \ by the inherited class:\n " :: slist) - | Hide_instance_variable lab -> - "this definition of an instance variable " ^ lab ^ - " hides a previously\ndefined instance variable of the same name." + | Instance_variable_override lab -> -+ "the instance variable " ^ lab ^ " is overriden.\n" ^ ++ "the instance variable " ^ lab ^ " is overridden.\n" ^ + "The behaviour changed in ocaml 3.10 (previous behaviour was hiding.)" | Partial_application -> "this function application is partial,\n\ @@ -1383,13 +1383,13 @@ diff -u -r1.48 main_args.ml \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ -- \032 M/m enable/disable overriden method\n\ -+ \032 M/m enable/disable overriden methods\n\ +- \032 M/m enable/disable overridden method\n\ ++ \032 M/m enable/disable overridden methods\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ - \032 V/v enable/disable hidden instance variable\n\ -+ \032 V/v enable/disable overriden instance variables\n\ ++ \032 V/v enable/disable overridden instance variables\n\ \032 Y/y enable/disable suspicious unused variables\n\ \032 Z/z enable/disable all other unused variables\n\ \032 X/x enable/disable all other warnings\n\ @@ -1405,7 +1405,7 @@ diff -u -r1.87 optmain.ml \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ - \032 V/v enable/disable hidden instance variables\n\ -+ \032 V/v enable/disable overriden instance variables\n\ ++ \032 V/v enable/disable overridden instance variables\n\ \032 Y/y enable/disable suspicious unused variables\n\ \032 Z/z enable/disable all other unused variables\n\ \032 X/x enable/disable all other warnings\n\ diff --git a/toplevel/opttopmain.ml b/toplevel/opttopmain.ml index 4d228ab..d953055 100644 --- a/toplevel/opttopmain.ml +++ b/toplevel/opttopmain.ml @@ -83,7 +83,7 @@ let main () = \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ - \032 M/m enable/disable overriden method\n\ + \032 M/m enable/disable overridden method\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ diff --git a/toplevel/topmain.ml b/toplevel/topmain.ml index 0129516..0b54357 100644 --- a/toplevel/topmain.ml +++ b/toplevel/topmain.ml @@ -76,7 +76,7 @@ let main () = \032 E/e enable/disable fragile match\n\ \032 F/f enable/disable partially applied function\n\ \032 L/l enable/disable labels omitted in application\n\ - \032 M/m enable/disable overriden method\n\ + \032 M/m enable/disable overridden method\n\ \032 P/p enable/disable partial match\n\ \032 S/s enable/disable non-unit statement\n\ \032 U/u enable/disable unused match case\n\ diff --git a/typing/ctype.ml b/typing/ctype.ml index c2778da..0973cce 100644 --- a/typing/ctype.ml +++ b/typing/ctype.ml @@ -1053,7 +1053,7 @@ let apply env params body args = If the environnement has changed, memorized expansions might not be correct anymore, and so we flush the cache. This is safe but quite pessimistic: it would be enough to flush the cache when a - type or module definition is overriden in the environnement. + type or module definition is overridden in the environnement. *) let previous_env = ref Env.empty let string_of_kind = function Public -> "public" | Private -> "private" diff --git a/utils/warnings.ml b/utils/warnings.ml index 858bd11..92626c2 100644 --- a/utils/warnings.ml +++ b/utils/warnings.ml @@ -123,14 +123,14 @@ let message = function | Labels_omitted -> "labels were omitted in the application of this function." | Method_override [lab] -> - "the method " ^ lab ^ " is overriden in the same class." + "the method " ^ lab ^ " is overridden in the same class." | Method_override (cname :: slist) -> String.concat " " - ("the following methods are overriden by the class" + ("the following methods are overridden by the class" :: cname :: ":\n " :: slist) | Method_override [] -> assert false | Instance_variable_override lab -> - "the instance variable " ^ lab ^ " is overriden.\n" ^ + "the instance variable " ^ lab ^ " is overridden.\n" ^ "The behaviour changed in ocaml 3.10 (previous behaviour was hiding.)" | Partial_application -> "this function application is partial,\n\ -- 1.6.6.1 ![]() From 5a68c1f10f26aa93e9cf13c4d17a117a0873161c Mon Sep 17 00:00:00 2001 From: Stephane Glondu <steph@glondu.net> Date: Wed, 10 Feb 2010 13:35:44 +0100 Subject: [PATCH 2/2] informations -> information Signed-off-by: Stephane Glondu <steph@glondu.net> --- bytecomp/bytepackager.ml | 2 +- debugger/program_management.ml | 2 +- debugger/time_travel.ml | 2 +- man/ocamldoc.m | 2 +- ocamldoc/odoc_texi.ml | 2 +- otherlibs/unix/unix.mli | 2 +- otherlibs/unix/unixLabels.mli | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bytecomp/bytepackager.ml b/bytecomp/bytepackager.ml index 31eff07..6649aa3 100644 --- a/bytecomp/bytepackager.ml +++ b/bytecomp/bytepackager.ml @@ -28,7 +28,7 @@ type error = exception Error of error -(* References accumulating informations on the .cmo files *) +(* References accumulating information on the .cmo files *) let relocs = ref ([] : (reloc_info * int) list) let events = ref ([] : debug_event list) diff --git a/debugger/program_management.ml b/debugger/program_management.ml index cc908b4..8ebb907 100644 --- a/debugger/program_management.ml +++ b/debugger/program_management.ml @@ -117,7 +117,7 @@ let ask_kill_program () = let initialize_loading () = if !debug_loading then - prerr_endline "Loading debugging informations..."; + prerr_endline "Loading debugging information..."; begin try access !program_name [F_OK] with Unix_error _ -> prerr_endline "Program not found."; diff --git a/debugger/time_travel.ml b/debugger/time_travel.ml index a4a4c83..430de3a 100644 --- a/debugger/time_travel.ml +++ b/debugger/time_travel.ml @@ -256,7 +256,7 @@ let duplicate_current_checkpoint () = (* --- about this exception. *) let interrupted = ref false -(* Informations about last breakpoint encountered *) +(* Information about last breakpoint encountered *) let last_breakpoint = ref None (* Ensure we stop on an event. *) diff --git a/man/ocamldoc.m b/man/ocamldoc.m index 19a7f03..6ff3ac1 100644 --- a/man/ocamldoc.m +++ b/man/ocamldoc.m @@ -255,7 +255,7 @@ Do not print OCamldoc warnings. Display a short usage summary and exit. .SS "Type-checking options" .BR ocamldoc (1) -calls the Objective Caml type-checker to obtain type informations. The +calls the Objective Caml type-checker to obtain type information. The following options impact the type-checking phase. They have the same meaning as for the .BR ocamlc (1)\ and \ ocamlopt (1) diff --git a/ocamldoc/odoc_texi.ml b/ocamldoc/odoc_texi.ml index ec7d50c..d556395 100644 --- a/ocamldoc/odoc_texi.ml +++ b/ocamldoc/odoc_texi.ml @@ -218,7 +218,7 @@ struct String.concat "\n" [ "@ifinfo" ; s ; "@end ifinfo" ; "" ] - (** [install-info] informations *) + (** [install-info] information *) let dirsection sec = "@dircategory " ^ (escape sec) diff --git a/otherlibs/unix/unix.mli b/otherlibs/unix/unix.mli index e7ac445..cf9b68b 100644 --- a/otherlibs/unix/unix.mli +++ b/otherlibs/unix/unix.mli @@ -338,7 +338,7 @@ type stats = st_mtime : float; (** Last modification time *) st_ctime : float; (** Last status change time *) } -(** The informations returned by the {!Unix.stat} calls. *) +(** The information returned by the {!Unix.stat} calls. *) val stat : string -> stats (** Return the information for the named file. *) diff --git a/otherlibs/unix/unixLabels.mli b/otherlibs/unix/unixLabels.mli index c2295e3..9292125 100644 --- a/otherlibs/unix/unixLabels.mli +++ b/otherlibs/unix/unixLabels.mli @@ -338,7 +338,7 @@ type stats = Unix.stats = st_mtime : float; (** Last modification time *) st_ctime : float; (** Last status change time *) } -(** The informations returned by the {!UnixLabels.stat} calls. *) +(** The information returned by the {!UnixLabels.stat} calls. *) val stat : string -> stats (** Return the information for the named file. *) -- 1.6.6.1 | |||||||
![]() |
|||
Date Modified | Username | Field | Change |
2010-02-10 13:53 | glondu | New Issue | |
2010-02-10 13:54 | glondu | File Added: 0001-overriden-overridden.patch | |
2010-02-10 13:54 | glondu | File Added: 0002-informations-information.patch | |
2010-05-21 13:58 | doligez | Status | new => closed |
2010-05-21 13:58 | doligez | Resolution | open => fixed |
2010-05-21 13:58 | doligez | Fixed in Version | => 3.12.0+dev |
2017-02-23 16:36 | doligez | Category | OCaml general => -OCaml general |
2017-03-03 17:55 | doligez | Category | -OCaml general => -(deprecated) general |
2017-03-03 18:01 | doligez | Category | -(deprecated) general => ~deprecated (was: OCaml general) |
2017-03-06 17:04 | doligez | Category | ~deprecated (was: OCaml general) => ~DO NOT USE (was: OCaml general) |
Copyright © 2000 - 2011 MantisBT Group |