diff options
author | elioat <elioat@tilde.institute> | 2022-12-03 11:20:01 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2022-12-03 11:20:01 -0500 |
commit | 91f177c912c7825532fa5ef3efab85d0dd3d9d9b (patch) | |
tree | 16d0f24b22531c7a40d308199ab48a2ea655caff | |
parent | 7d320a17b570a6607bdfd993aae84fcd46594aa1 (diff) | |
download | december-2022-91f177c912c7825532fa5ef3efab85d0dd3d9d9b.tar.gz |
questions
-rw-r--r-- | src/pokedex.rkt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokedex.rkt b/src/pokedex.rkt index f014f0c..02523b0 100644 --- a/src/pokedex.rkt +++ b/src/pokedex.rkt @@ -25,7 +25,7 @@ "queries the api, returns a butt ton of info" (call/input-url (string->url (~a *POKE-API* id)) ; ~a, like string-append but appends *either* strings or numbers to a string get-pure-port - (compose string->jsexpr port->string))) + (compose string->jsexpr port->string))) ;; QUESTION: could I use read-json here, instead? (define (dex-entry id) "selects the info we need from the api, builds a hash table of the data that will build the entry" |