From c4f5e2952cd4eced07f940e704e609008eed15a7 Mon Sep 17 00:00:00 2001 From: Gajender Tyagi Date: Tue, 1 Feb 2022 23:05:42 +0530 Subject: [PATCH] docs: Add comma to separate password and url key Added a comma to separate the properties in transportOptions object. Signed-off-by: Gajender Tyagi --- docs/Connection.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Connection.rst b/docs/Connection.rst index 53f3e12e..2d81a5a8 100644 --- a/docs/Connection.rst +++ b/docs/Connection.rst @@ -127,7 +127,7 @@ Creating a ``Connection`` using the ``REST`` tranport. transportOptions: { database: '*LOCAL', username: 'myuser', - password: 'mypass' + password: 'mypass', url: 'http://myhost.example.com/cgi-bin/xmlcgi.pgm', } });