From 15e199b41b368e8153e0a224c9016cf1402518ca Mon Sep 17 00:00:00 2001 From: "Michael S. Klishin" Date: Tue, 31 Jan 2012 02:34:50 +0400 Subject: [PATCH] Correct Markdown syntax --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e2c392..4d7ebe9 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ With the `SAFE` write concern, it takes roughly 1.7 second to insert 100,000 doc `monger.collection` namespace provides several finder functions that try to follow MongoDB query language as closely as possible, even when providing shortcuts for common cases. -`` clojure +``` clojure (ns my.service.finders (:require [monger.collection :as mc]) (:use [monger.operators])) @@ -152,7 +152,7 @@ even when providing shortcuts for common cases. ;; with a query that uses operators as strings (mc/find "products" { :price_in_subunits { "$gt" 4000 "$lte" 1200 } }) -`` +``` ## Powerful Query DSL