From 927d16c0592d8d6920416958438d93a067789fc3 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Sun, 14 Dec 2014 14:24:21 -0800 Subject: [PATCH] Fix broken link for Clojure logo Prior to this commit the clojure logo gif resulted in a 404 from wikipedia. This commit fixes that by using the current clojure logo gif from the clojure wikipedia entry. --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 86eccc3..8223669 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -44,7 +44,7 @@ Right now, you're using the `play-clj.ui` library to display a label. This libra [play-clj.g2d :refer :all])) ``` -Now let's find an image to use as a texture in the game. Find one you'd like to use, such as [this Clojure logo](http://upload.wikimedia.org/wikipedia/commons/c/c5/Clojure-icon.gif), and save it to the `desktop/resources` folder. Next, simply change the line where the label entity is being created, so it creates a texture from that file instead: +Now let's find an image to use as a texture in the game. Find one you'd like to use, such as [this Clojure logo](http://upload.wikimedia.org/wikipedia/en/1/1d/Clojure_logo.gif), and save it to the `desktop/resources` folder. Next, simply change the line where the label entity is being created, so it creates a texture from that file instead: ```clojure (texture "Clojure-icon.gif")