diff --git a/README.md b/README.md index b74e1f2ac..d27a6ad42 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ you then manage yourself. | ➡️ For **PostGraphile V4** see [the `legacy` branch](https://github.com/graphile/crystal/tree/legacy) | | ----------------------------------------------------------------------------------------------------- | - ## Project summaries Here's a rough breakdown of the main packages: diff --git a/utils/tamedevil/README.md b/utils/tamedevil/README.md index ae029955a..c6f5add16 100644 --- a/utils/tamedevil/README.md +++ b/utils/tamedevil/README.md @@ -320,7 +320,7 @@ If `obj` is potentially expensive code and you need to reference it multiple times (e.g. `` te`(${obj}.foo === 3 ? ${obj}.bar : ${obj}.baz)` ``) then you can use `tmp` to create a temporary variable that stores reference to it and return the result of calling `callback` passing this temporary reference. E.g. -`` te.tmp(obj, tmp => te`(${tmp}.foo === 3 ? ${tmp}.bar : ${tmp}.baz)`) `` means +``te.tmp(obj, tmp => te`(${tmp}.foo === 3 ? ${tmp}.bar : ${tmp}.baz)`)`` means that the potentially expensive expression in the original `obj` variable only need to be evaluated once, not 3 times.