From 4744f51b0eb206fe4504377c189c081f8d6a0f5b Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Wed, 9 Aug 2023 15:04:29 +0200 Subject: [PATCH] Fix typo (#72) --- doc/examples/quickstart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/quickstart.py b/doc/examples/quickstart.py index 614606f8..3c49ffe4 100644 --- a/doc/examples/quickstart.py +++ b/doc/examples/quickstart.py @@ -4,9 +4,9 @@ ) URL = "http://localhost:6666" -CREDENTAILS = {"default": {"username": "w", "password": "write"}} +CREDENTIALS = {"default": {"username": "w", "password": "write"}} -bucketfs = Service(URL, CREDENTAILS) +bucketfs = Service(URL, CREDENTIALS) # 0. List buckets buckets = [bucket for bucket in bucketfs]