Skip to content

Commit 9b6fbce

Browse files
committed
Use the new syntax for Markdown admonitions
1 parent 95208c3 commit 9b6fbce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
> **Note**
3+
> [!IMPORTANT]
44
> Tests must be added for all new functionality. Existing tests must be updated for all changed/fixed functionality, where applicable. All tests must complete without errors. All new functionality must be documented as well.
55
66
## Environment setup

EXAMPLES.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ When creating the SimpleKeychain instance, specify the access group that the app
3434
let simpleKeychain = SimpleKeychain(accessGroup: "ABCDEFGH.com.example.myaccessgroup")
3535
```
3636

37-
> **Note**
37+
> [!NOTE]
3838
> For more information on access group sharing, see [Sharing Access to Keychain Items Among a Collection of Apps](https://developer.apple.com/documentation/security/keychain_services/keychain_items/sharing_access_to_keychain_items_among_a_collection_of_apps).
3939
4040
## Share items with other devices through iCloud synchronization
@@ -45,7 +45,7 @@ When creating the SimpleKeychain instance, set `synchronizable` to `true` to ena
4545
let simpleKeychain = SimpleKeychain(sychronizable: true)
4646
```
4747

48-
> **Note**
48+
> [!NOTE]
4949
> For more information on iCloud synchronization, check the [kSecAttrSynchronizable documentation](https://developer.apple.com/documentation/security/ksecattrsynchronizable).
5050
5151
## Restrict item accessibility based on device state
@@ -56,7 +56,7 @@ When creating the SimpleKeychain instance, specify a custom accesibility value t
5656
let simpleKeychain = SimpleKeychain(accessibility: .whenUnlocked)
5757
```
5858

59-
> **Note**
59+
> [!NOTE]
6060
> For more information on accessibility, see [Restricting Keychain Item Accessibility](https://developer.apple.com/documentation/security/keychain_services/keychain_items/restricting_keychain_item_accessibility).
6161
6262
## Require Touch ID / Face ID to retrieve an item
@@ -70,7 +70,7 @@ let simpleKeychain = SimpleKeychain(accessControlFlags: .biometryCurrentSet,
7070
context: context)
7171
```
7272

73-
> **Note**
73+
> [!NOTE]
7474
> For more information on access control, see [Restricting Keychain Item Accessibility](https://developer.apple.com/documentation/security/keychain_services/keychain_items/restricting_keychain_item_accessibility).
7575
7676
---

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Migrating from 0.x? Check the [Migration Guide](V1_MIGRATION_GUIDE.md).
2626
- Xcode 13.x / 14.x
2727
- Swift 5.x
2828

29-
> **Note**
29+
> [!IMPORTANT]
3030
> Check the [Support Policy](#support-policy) to learn when dropping Xcode, Swift, and platform versions will not be considered a **breaking change**.
3131
3232
### Installation

0 commit comments

Comments
 (0)