Skip to content

Commit 77c6c2a

Browse files
authored
fixes in readme
1 parent 887ba55 commit 77c6c2a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
- Secure authentication is the key factor in many application (e.g. financial applications). Many application uses PIN-based authentication.
1010
- But Android System doesn't provide any easy to set the view for PIN-based authentication which can tightly integrate and take advantage of fingerprint API introduced in newer versions of android. This limitation led me to work on this project.
1111

12-
- With the use of *PasscodeView* you can easily integrate PIN & Fingerprint based authentication in your application.
12+
- With the use of *PasscodeView*, you can easily integrate PIN & Fingerprint based authentication in your application.
1313

1414

1515
## Features:
16-
This library provide easy and secure PIN authentication view, which
16+
This library provides easy and secure PIN authentication view, which
1717
- provides access to built-in fingerprint-based authentication. This handles all the complexities of integrating the fingerprint API with your application.
1818
- provide error feedback when PIN entered is wrong.
1919
- is highly customizable. So that you can match it with your application them. It provides you control over,
@@ -22,7 +22,7 @@ This library provide easy and secure PIN authentication view, which
2222
* size of the each single key.
2323
* color and shape of pin indicators.👉 [Guide](https://github.com/kevalpatel2106/PasscodeView/wiki/Indicators)
2424
* Control over tactile feedback for key press and authentication success/failure events.
25-
* Authenticate using using the pattern.
25+
* Authenticate using the pattern.
2626

2727
## Demo:
2828
**Authentication using PIN/Fingerprint**
@@ -92,7 +92,7 @@ This library provide easy and secure PIN authentication view, which
9292
```
9393

9494
- ### Set the shape of the key you want to use.
95-
- There are three built in key shapes. You can also generate your own key by extending [`Key`](https://github.com/kevalpatel2106/PasscodeView/blob/master/passcodeview/src/main/java/com/kevalpatel/passcodeview/keys/Key.java) class.
95+
- There are three built-in key shapes. You can also generate your own key by extending [`Key`](https://github.com/kevalpatel2106/PasscodeView/blob/master/passcodeview/src/main/java/com/kevalpatel/passcodeview/keys/Key.java) class.
9696
* Round key
9797
* Rectangle key
9898
* Square key
@@ -152,7 +152,7 @@ This library provide easy and secure PIN authentication view, which
152152
```
153153

154154
- ### Set key names.
155-
- Set the texts to display on different keys. This is optional step. If you don't set the key names, by default `PINView` will display English locale digits.
155+
- Set the texts to display on different keys. This is an optional step. If you don't set the key names, by default `PINView` will display English locale digits.
156156
- If you want to learn more about key name localization visit [here](https://github.com/kevalpatel2106/PasscodeView/wiki/Add-localized-key-names).
157157
```java
158158
@Override
@@ -184,7 +184,7 @@ This library provide easy and secure PIN authentication view, which
184184
}
185185
```
186186
187-
- ### Set callback listener to get callbacks when user is authenticated or authentication fails.
187+
- ### Set callback listener to get callbacks when the user is authenticated or authentication fails.
188188
```java
189189
@Override
190190
protected void onCreate(Bundle savedInstanceState) {

0 commit comments

Comments
 (0)