Skip to content

Commit

Permalink
fixing typo in PasswordlessClient
Browse files Browse the repository at this point in the history
  • Loading branch information
WaciX committed Oct 16, 2023
1 parent e812b55 commit 81996cd
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -11,14 +11,14 @@ The official [Bitwarden Passwordless.dev](https://passwordless.dev/) Java librar
<dependency>
<groupId>com.bitwarden</groupId>
<artifactId>passwordless</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
```

**Gradle**: add to the `dependencies` in *gradle.build* file:

```groovy
implementation group: 'com.bitwarden', name: 'passwordless', version: '1.0.5'
implementation group: 'com.bitwarden', name: 'passwordless', version: '1.0.6'
```

### Dependencies
2 changes: 1 addition & 1 deletion examples/spring-boot-3-jdk-17/pom.xml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
<dependency>
<groupId>com.bitwarden</groupId>
<artifactId>passwordless</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>

<dependency>
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.bitwarden</groupId>
<artifactId>passwordless</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>passwordless</name>
<description>Passwordless.dev Java SDK</description>
<packaging>jar</packaging>
@@ -22,6 +22,11 @@
<developerConnection>scm:git:git@github.com:passwordless/passwordless-java.git</developerConnection>
</scm>

<organization>
<name>Bitwarden Inc.</name>
<url>https://github.com/bitwarden</url>
</organization>

<developers>
<developer>
<id>Wacix</id>
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ void updateAppsFeature(UpdateAppsFeature updateAppsFeature)
/**
* Attempts to delete a credential.
*
* @param deleteCredential {@link PasswordlessApiException} containing details about the credential id to be
* @param deleteCredential {@link DeleteCredential} containing details about the credential id to be
* deleted.
* @throws PasswordlessApiException If the Passwordless Api responds with an error.
* @throws IOException If there's an IO-related issue.

0 comments on commit 81996cd

Please sign in to comment.