From a27b1e8f5de79254c73bdc8ae1dfcdd09662ca64 Mon Sep 17 00:00:00 2001 From: Trevor Wennblom Date: Sat, 25 May 2013 18:17:21 -0400 Subject: [PATCH] add ^:dynamic to readme prevent `Warning: *blobstore* not declared dynamic and thus is not dynamically rebindable, but its name suggests otherwise. Please either indicate ^:dynamic *blobstore* or change the name. (NO_SOURCE_PATH:1)` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74e76acd591..76d899955d9 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ BlobStore Example (Clojure): ```clojure (use 'org.jclouds.blobstore2) -(def *blobstore* (blobstore "azureblob" account encodedkey)) +(def ^:dynamic *blobstore* (blobstore "azureblob" account encodedkey)) (create-container *blobstore* "mycontainer") (put-blob *blobstore* "mycontainer" (blob "test" :payload "testdata")) ```