Skip to content

Commit 3848d93

Browse files
docs: fix typos (#6)
1 parent a489be9 commit 3848d93

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Apex AsyncLinkable ![Build](https://github.com/scolladon/apex-async-linkable/actions/workflows/main.yml/badge.svg) [![codecov](https://codecov.io/gh/scolladon/apex-async-linkable/branch/master/graph/badge.svg?token=DFHDV3OCIS)](https://codecov.io/gh/scolladon/apex-async-linkable)
22

3-
This library provides all the classes required to chain all kind of Async jobs.
3+
This library provides all the classes required to chain all kind of async jobs in Apex.
44

55
## Installation
66

@@ -15,11 +15,11 @@ $ sfdx force:source:deploy -p chain/src/lib
1515
2. Respect the interface contract and override the `job` method.
1616
_`start` method must also be overridden for the BatchLink and ScheduleBatchLink class_
1717

18-
The `job` method will contains your business logic. It can access the private attributes of your class (and the protected ones of the base class).
18+
The `job` method will contain your business logic. It can then access the private attributes of your class and the protected ones of the base class.
1919

20-
If you need some extra interface to make you're code work, it is up to you to add them (`Database.Stateful`, `Database.AllowsCallouts`, etc).
20+
If you need some extra interface to make your code work, it is up to you to add them (such as `Database.Stateful`, `Database.AllowsCallouts`, etc).
2121

22-
You're ready to chain apex asynchronous process!
22+
You're ready to chain apex asynchronous processes!
2323

2424
Example for Batchable:
2525

@@ -42,7 +42,7 @@ public class BatchLink_EXAMPLE extends BatchLink {
4242
}
4343
```
4444

45-
Example for Queue:
45+
Example for Queueable:
4646

4747
```apex
4848
//Subclass QueueLink for example
@@ -57,7 +57,7 @@ public class QueueLink_EXAMPLE extends QueueLink {
5757
}
5858
```
5959

60-
Example chaining `BatchLink_EXAMPLE` and `QueueLink_EXAMPLE`;
60+
Example chaining of a batch and queeuable instances:
6161

6262
```apex
6363
// Chain both and execute them
@@ -73,7 +73,7 @@ public class Service {
7373

7474
## Improvement
7575

76-
Implement sub class allowing to handle BatchLink and ScheduleBatchLink with iterable in addition of QueryLocator\
76+
Implement sub class allowing to handle BatchLink and ScheduleBatchLink with iterable in addition of QueryLocator.
7777

7878
## Versioning
7979

0 commit comments

Comments
 (0)