From 150bc72ed6f1614731f5f417da31906900d26fcd Mon Sep 17 00:00:00 2001 From: jellejurre Date: Mon, 25 Nov 2024 18:35:23 +0100 Subject: [PATCH] Fix inconsistent formatting --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 34f1919..ef243cf 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ AuthenticationApi authApi = new AuthenticationApi(defaultClient); // Step 2. We begin with creating a Configuration // This contains the username and password for authentication, as well as a user agent. HttpBasicAuth authHeader = (HttpBasicAuth) defaultClient.getAuthentication("authHeader"); - authHeader.setUsername("username"); - authHeader.setPassword("password"); - defaultClient.setUserAgent("ExampleProgram/0.0.1 my@email.com"); +authHeader.setUsername("username"); +authHeader.setPassword("password"); +defaultClient.setUserAgent("ExampleProgram/0.0.1 my@email.com"); // Step 3. Call getCurrentUser on Authentication API.