diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2013-03-09 22:38:52 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2013-03-09 22:38:52 +0000 |
commit | c63f9e09579ba88c4b9510ccce062fbc767fd3a6 (patch) | |
tree | a9a7f7ef5f2c1a7d84ba7034e3ed12422800ec96 /stdlib/printf.ml | |
parent | fb36548704ce096310707204c77218fe4d69f069 (diff) |
fix a few problems with whitespace and over-long lines
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13393 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/printf.ml')
-rw-r--r-- | stdlib/printf.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/printf.ml b/stdlib/printf.ml index 349f6e364..1797b8e80 100644 --- a/stdlib/printf.ml +++ b/stdlib/printf.ml @@ -77,7 +77,8 @@ let incomplete_format fmt = Sformat.to_string fmt ^ "''") ;; -(* Parses a string conversion to return the specified length and the padding direction. *) +(* Parses a string conversion to return the specified length and the + padding direction. *) let parse_string_conversion sfmt = let rec parse neg i = if i >= String.length sfmt then (0, neg) else |