diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-11-20 14:10:25 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-11-20 14:10:25 +0100 |
| commit | fb8b08f5036882f40f0a9bd5e18bc944d09f53f8 (patch) | |
| tree | 791496c8dcc4e57954885ee3a51b152558416fdc /models | |
| parent | cce6a211e80440fef84c4ac0e007cc33ea929946 (diff) | |
Increase variable naming clarity.
Diffstat (limited to 'models')
| -rw-r--r-- | models/nutrient.rkt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/nutrient.rkt b/models/nutrient.rkt index d79801f..3e2767b 100644 --- a/models/nutrient.rkt +++ b/models/nutrient.rkt @@ -54,10 +54,10 @@ ;; READ (define (get-nutrients) - (for/list ([(id* name* formula*) + (for/list ([(id name formula) (in-query (current-conn) (select id canonical_name formula #:from nutrients #:order-by id #:asc))]) - (nutrient id* name* formula*))) + (nutrient id name formula))) (define (get-nutrient #:id [id #f] #:name [name #f] #:formula [formula #f]) (define (where-expr) |