diff options
| author | Emilio Jesus Gallego Arias | 2019-11-21 15:38:39 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-11-21 15:38:39 +0100 |
| commit | d016f69818b30b75d186fb14f440b93b0518fc66 (patch) | |
| tree | 32cd948273f79a2c01ad27b4ed0244ea60d7e2f9 /lib/pp.mli | |
| parent | b680b06b31c27751a7d551d95839aea38f7fbea1 (diff) | |
[coq] Untabify the whole ML codebase.
We also remove trailing whitespace.
Script used:
```bash
for i in `find . -name '*.ml' -or -name '*.mli' -or -name '*.mlg'`; do expand -i "$i" | sponge "$i"; sed -e's/[[:space:]]*$//' -i.bak "$i"; done
```
Diffstat (limited to 'lib/pp.mli')
| -rw-r--r-- | lib/pp.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pp.mli b/lib/pp.mli index b97e74132c..7bb66b0135 100644 --- a/lib/pp.mli +++ b/lib/pp.mli @@ -149,8 +149,8 @@ val prlist_strict : ('a -> t) -> 'a list -> t val prlist_with_sep : (unit -> t) -> ('a -> t) -> 'a list -> t (** [prlist_with_sep sep pr [a ; ... ; c]] outputs - [pr a ++ sep () ++ ... ++ sep () ++ pr c]. - where the thunk sep is memoized, rather than being called each place + [pr a ++ sep () ++ ... ++ sep () ++ pr c]. + where the thunk sep is memoized, rather than being called each place its result is used. *) |
