Преглед на файлове

Minor fix to the HTTP Basic Authentication documentation

Replaced JSON array with JSON object since you cannot assign key values in an array.
tomzx преди 10 години
родител
ревизия
6b5a531782
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      doc/articles/http-basic-authentication.md

+ 2 - 2
doc/articles/http-basic-authentication.md

@@ -40,7 +40,7 @@ username/password pairs, for example:
 
 ```json
 {
-    "basic-auth": [
+    "basic-auth": {
         "repo.example1.org": {
             "username": "my-username1",
             "password": "my-secret-password1"
@@ -49,7 +49,7 @@ username/password pairs, for example:
             "username": "my-username2",
             "password": "my-secret-password2"
         }
-    ]
+    }
 }
 ```