Ratpack fix formatting and non-ascii characters

This commit is contained in:
Jonathan Leitschuh
2021-05-11 10:58:33 -04:00
parent a3b1736a73
commit cdfdcc66bd
21 changed files with 27 additions and 26 deletions

View File

@@ -23,7 +23,7 @@ import ratpack.func.Function;
* A promise for a single value.
* <p>
* A promise is a representation of a value which will become available later.
* Methods such as {@link #map(Function)}, {@link #flatMap(Function)}, {@link #cache()} etc.) allow a pipeline of “operations to be specified,
* Methods such as {@link #map(Function)}, {@link #flatMap(Function)}, {@link #cache()} etc.) allow a pipeline of “operations" to be specified,
* that the value will travel through as it becomes available.
* Such operations are implemented via the {@link #transform(Function)} method.
* Each operation returns a new promise object, not the original promise object.