Skip to content

Commit ee5b393

Browse files
committed
minor readme fixes
1 parent 266b335 commit ee5b393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Sublime Text 3 plugin - inline python evaluation.
66

77
### As a calculator
88

9-
For example you can write 3.14*0.6 and get the result (1.884) in your text.
9+
For example you can write `3.14*0.6` and get the result `1.884` in your text.
1010
It also supports multiple selection.
1111

1212
### Incremnt counter at cursor positions
@@ -68,7 +68,7 @@ While you can just use the regular python to do set computations, there's a few
6868

6969
The functions takes two iterable arguments, which are turned into sets, and the computations are performed:
7070

71-
set_intersect('foo bar', 'foo baz') -> {'b', 'a', ' ', 'o', 'f'}
71+
set_intersect('foo bar', 'foo baz') -> {'b', ' ', 'a', 'f', 'o'}
7272
set_intersect('foo baz', 'foo bar') -> {'b', 'a', ' ', 'o', 'f'}
7373
set_difference('foo baz', 'foo bar') -> {'z'}
7474
set_difference('foo bar', 'foo baz') -> {'r'}

0 commit comments

Comments
 (0)