Skip to content

Commit

Permalink
Use the new syntax for Markdown admonitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Dec 13, 2023
1 parent 95208c3 commit 9b6fbce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

> **Note**
> [!IMPORTANT]
> 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.
## Environment setup
Expand Down
8 changes: 4 additions & 4 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ When creating the SimpleKeychain instance, specify the access group that the app
let simpleKeychain = SimpleKeychain(accessGroup: "ABCDEFGH.com.example.myaccessgroup")
```

> **Note**
> [!NOTE]
> 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).
## Share items with other devices through iCloud synchronization
Expand All @@ -45,7 +45,7 @@ When creating the SimpleKeychain instance, set `synchronizable` to `true` to ena
let simpleKeychain = SimpleKeychain(sychronizable: true)
```

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

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

> **Note**
> [!NOTE]
> 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).
---
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Migrating from 0.x? Check the [Migration Guide](V1_MIGRATION_GUIDE.md).
- Xcode 13.x / 14.x
- Swift 5.x

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

0 comments on commit 9b6fbce

Please sign in to comment.