You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by gl...@apache.org on 2020/02/13 14:06:03 UTC

[couchdb-nano] branch master updated: Bugfix(README.md): Fixed typo (#188)

This is an automated email from the ASF dual-hosted git repository.

glynnbird pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-nano.git


The following commit(s) were added to refs/heads/master by this push:
     new ff5f425  Bugfix(README.md): Fixed typo (#188)
ff5f425 is described below

commit ff5f42503bedb90f8684e8703c05780bd6501650
Author: Philipp <ph...@gmail.com>
AuthorDate: Thu Feb 13 15:05:54 2020 +0100

    Bugfix(README.md): Fixed typo (#188)
    
    PASSSWORD => PASSWORD
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 94a2118..c7b6a8e 100644
--- a/README.md
+++ b/README.md
@@ -272,7 +272,7 @@ There is a full TypeScript definition included in the the *nano* package. Your T
 ```ts
 import * as Nano  from 'nano'
 
-let n = Nano('http://USERNAME:PASSSWORD@localhost:5984')
+let n = Nano('http://USERNAME:PASSWORD@localhost:5984')
 let db = n.db.use('people')
 
 interface iPerson extends Nano.MaybeDocument {