Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jemgillam committed Sep 20, 2024
1 parent 80b05da commit 97b0355
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion utils/tamedevil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 97b0355

Please sign in to comment.