Skip to content

Commit 6c3cc03

Browse files
committed
Fixed README markup.
1 parent ba1436e commit 6c3cc03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ Note, that when you retrieve a set of clusters, it immediately starts the
3737
clustering process, which is quite complex. If you intend to create clusters
3838
from a large dataset, consider doing that in a separate thread.
3939

40-
For K-Means clustering it would look like this:
40+
For K-Means clustering it would look like this::
4141

42-
>>> from cluster import KMeansClustering
43-
>>> cl = KMeansClustering([(1,1), (2,1), (5,3), ...])
44-
>>> clusters = cl.getclusters(2)
42+
>>> from cluster import KMeansClustering
43+
>>> cl = KMeansClustering([(1,1), (2,1), (5,3), ...])
44+
>>> clusters = cl.getclusters(2)
4545

4646
The parameter passed to getclusters is the count of clusters generated.

0 commit comments

Comments
 (0)