Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rshk committed Nov 11, 2013
1 parent 73955a4 commit 8f6fd24
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,13 @@ The reasons behind this project are:

And I hate writing things like: ``{'$and': [cond1, cond2, ...]}``.

And I think that [polish notation][polish-notation] tends to beacame easily
hard to follow, too:

compare ``(5 - 6) * 7`` with ``* - 5 6 7`` (polish notation),
``(* (- 5 6) 7)`` (lisp) or, worse of 'em all, the mongodb way:
And I think that [polish notation] tends to become
hard to follow quickly: compare, for example, ``(5 - 6) * 7``
with ``* - 5 6 7`` (polish notation), ``(* (- 5 6) 7)`` (lisp)
or, worse of them all, the mongodb way:
``{'$multiply': [{'$subtract': [5, 6]}, 7]}``...

[polish-notation]: http://en.wikipedia.org/wiki/Polish_notation
[polish notation]: http://en.wikipedia.org/wiki/Polish_notation


## Reasons NOT behind this
Expand Down

0 comments on commit 8f6fd24

Please sign in to comment.