about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pokedex.rkt2
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"