Skip to content

Commit 2b2698a

Browse files
authored
chore: update readmes (#2388)
1 parent a096aee commit 2b2698a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README-combine-support.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
<img src="https://s3.amazonaws.com/aws-mobile-hub-images/aws-amplify-logo.png" alt="AWS Amplify" width="550" >
44

5-
Amplify supports iOS 13+ and macOS 10.15+, and ships with APIs that leverage Swift Concurrenty (async/await) to return values. For example, the following returns an array of type `Geo.Place` with search results for coffee shops.
5+
Amplify supports iOS 13+ and macOS 10.15+, and ships with APIs that leverage Swift Concurrency (async/await) to return values. For example, the following returns an array of type `Geo.Place` with search results for coffee shops.
66

77
```swift
88
let places = try await Amplify.Geo.search(for "coffee")
99
```
1010

11-
Some APIs do not return a simple result, such as those that return subscriptions or provide progress updates. In cases where multiple values are expected over time, Amplify typically provides an `AmplifyAsyncSequence` or `AmplifyAsyncThrowingSequence`. These types conform to the `AsyncSequence` protocol and can be iterated over asyncronously. For example, the following subscribes to the creation of new Todos.
11+
Some APIs do not return a simple result, such as those that return subscriptions or provide progress updates. In cases where multiple values are expected over time, Amplify typically provides an `AmplifyAsyncSequence` or `AmplifyAsyncThrowingSequence`. These types conform to the `AsyncSequence` protocol and can be iterated over asynchronously. For example, the following subscribes to the creation of new Todos.
1212

1313
```swift
14-
let subscription = try await Amplify.API.subscribe(
14+
let subscription = Amplify.API.subscribe(
1515
request: .subscription(of: Todo.self, type: .onCreate)
1616
)
1717
```

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Amplify for iOS (Developer Preview)
1+
## Amplify Library for Swift
22
<img src="https://s3.amazonaws.com/aws-mobile-hub-images/aws-amplify-logo.png" alt="AWS Amplify" width="550" >
33

44
AWS Amplify provides a declarative and easy-to-use interface across different categories of cloud operations. Our default implementation works with Amazon Web Services (AWS), but AWS Amplify is designed to be open and pluggable for any custom backend or service.
@@ -49,7 +49,7 @@ let task = awsS3.headBucket(input: input) { result in
4949

5050
## Platform Support
5151

52-
Amplify supports iOS 13+ and macOS 10.15+. There are currently no plans to support Amplify on watchOS or tvOS.
52+
Amplify supports iOS 13+ and macOS 10.15+. Support for watchOS and tvOS is coming in future releases.
5353

5454
## License
5555

0 commit comments

Comments
 (0)