Commit 2de1ea8c6399cc8da770673525367c36199154ae

Authored by Andrew Kane
1 parent ebcf13c7

Use pretty option for curl

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
README.md
... ... @@ -56,7 +56,7 @@ Clinton Gormley also has a [good post](http://www.elasticsearch.org/blog/changin
56 56 When changing the mapping in a model, you must create a new index for the changes to take place. Elasticsearch does not support updates to the mapping. For zero downtime, use the `reindex` method above which creates a new index and swaps it in once built. To see the current mapping, use:
57 57  
58 58 ```sh
59   -curl http://localhost:9200/books/_mapping
  59 +curl "http://localhost:9200/books/_mapping?pretty=1"
60 60 ```
61 61  
62 62 ### Inconsistent Scores
... ...