diff --git a/structured-data.markdown b/structured-data.markdown index 9d4dce1..cea57e0 100644 --- a/structured-data.markdown +++ b/structured-data.markdown @@ -748,7 +748,7 @@ Okey, so now that `map` has been gone over, let's see the definition of (map :name (:authors book))) (defn all-author-names [books] - (set (apply concat (map author-name books)))) + (set (apply concat (map author-names books)))) ~~~ `author-names` returns the names of the authors of a single book.