Skip to content

Commit bd90258

Browse files
committed
Added horizontal rules between each method.
1 parent 0b14c5a commit bd90258

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/AdvancedUsage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The delegate must conform to the protocol `RNCAsyncStorageDelegate`:
2121
Returns all keys currently stored. If none, an empty array is returned.
2222
Called by `getAllKeys` in JS.
2323

24-
<br />
24+
---
2525

2626
```objc
2727
- (void)mergeValues:(NSArray<NSString *> *)values
@@ -32,15 +32,15 @@ Called by `getAllKeys` in JS.
3232
Merges values with the corresponding values stored at specified keys.
3333
Called by `mergeItem` and `multiMerge` in JS.
3434

35-
<br />
35+
---
3636

3737
```objc
3838
- (void)removeAllValues:(RNCAsyncStorageCompletion)block;
3939
```
4040

4141
Removes all values from the store. Called by `clear` in JS.
4242

43-
<br />
43+
---
4444

4545
```objc
4646
- (void)removeValuesForKeys:(NSArray<NSString *> *)keys
@@ -50,7 +50,7 @@ Removes all values from the store. Called by `clear` in JS.
5050
Removes all values associated with specified keys.
5151
Called by `removeItem` and `multiRemove` in JS.
5252

53-
<br />
53+
---
5454

5555
```objc
5656
- (void)setValues:(NSArray<NSString *> *)values
@@ -60,7 +60,7 @@ Called by `removeItem` and `multiRemove` in JS.
6060

6161
Sets specified key-value pairs. Called by `setItem` and `multiSet` in JS.
6262

63-
<br />
63+
---
6464

6565
```objc
6666
- (void)valuesForKeys:(NSArray<NSString *> *)keys
@@ -70,7 +70,7 @@ Sets specified key-value pairs. Called by `setItem` and `multiSet` in JS.
7070
Returns values associated with specified keys.
7171
Called by `getItem` and `multiGet` in JS.
7272

73-
<br />
73+
---
7474

7575
```objc
7676
@optional

0 commit comments

Comments
 (0)