From 3aa6a3ffacbed205dc2f3348457f65eae8f46e9e Mon Sep 17 00:00:00 2001 From: James Yu Date: Fri, 17 Jan 2014 21:40:52 -0600 Subject: [PATCH] fixed typo in comment --- elasticsearch/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/client/__init__.py b/elasticsearch/client/__init__.py index 7016b3bd..bd76ac97 100644 --- a/elasticsearch/client/__init__.py +++ b/elasticsearch/client/__init__.py @@ -65,7 +65,7 @@ class Elasticsearch(object): :arg hosts: list of nodes we should connect to. Node should be a dictionary ({"host": "localhost", "port": 9200}), the entire dictionary will be passed to the :class:`~elasticsearch.Connection` class as - kwargs, or a string in the format ot ``host[:port]`` which will be + kwargs, or a string in the format of ``host[:port]`` which will be translated to a dictionary automatically. If no value is given the :class:`~elasticsearch.Connection` class defaults will be used.