Skip to content

Commit 0660865

Browse files
committed
Fix language
1 parent e1d8dba commit 0660865

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ client.getMap('my-distributed-map').then(function (mp) {
16621662

16631663
Hazelcast Map supports a Near Cache for remotely stored entries to increase the performance of read operations. See the [Near Cache section](#782-near-cache) for a detailed explanation of the Near Cache feature and its configuration.
16641664

1665-
Hazelcast Map uses `MapListener` to listen to events which occur when entries are added to, updated in, merged in, evicted from or removed from the Map. See the [Map Listener section](#7521-map-listener) for information on how to create a map listener object and register it.
1665+
Hazelcast Map uses `MapListener` to listen to the events that occur when the entries are added to, updated/merged in or evicted/removed from the Map. See the [Map Listener section](#7521-map-listener) for information on how to create a map listener object and register it.
16661666

16671667
### 7.4.2. Using MultiMap
16681668

@@ -1693,7 +1693,7 @@ hz.getMultiMap('my-distributed-multimap').then(function (mmp) {
16931693
});
16941694
```
16951695

1696-
Hazelcast MultiMap uses `EntryListener` to listen to events which occur when entries are added to, or removed from the MultiMap. See the [Entry Listener section](#7522-entry-listener) for information on how to create an entry listener object and register it.
1696+
Hazelcast MultiMap uses `EntryListener` to listen to the events that occur when the entries are added to or removed from the MultiMap. See the [Entry Listener section](#7522-entry-listener) for information on how to create an entry listener object and register it.
16971697

16981698
### 7.4.3. Using Replicated Map
16991699

@@ -1718,7 +1718,7 @@ hz.getReplicatedMap('my-replicated-map').then(function (rmp) {
17181718
});
17191719
```
17201720

1721-
Hazelcast Replicated Map uses `EntryListener` to listen to events which occur when entries are added to, updated in, evicted from or removed from the Replicated Map. See the [Entry Listener section](#7522-entry-listener) for information on how to create an entry listener object and register it.
1721+
Hazelcast Replicated Map uses `EntryListener` to listen to the events that occur when the entries are added to, updated in or evicted/removed from the Replicated Map. See the [Entry Listener section](#7522-entry-listener) for information on how to create an entry listener object and register it.
17221722

17231723
### 7.4.4. Using Queue
17241724

@@ -1751,7 +1751,7 @@ hz.getQueue('my-distributed-queue').then(function (q) {
17511751
});
17521752
```
17531753

1754-
Hazelcast Queue uses `ItemListener` to listen to events that occur when items are added to and removed from the Queue. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
1754+
Hazelcast Queue uses `ItemListener` to listen to the events that occur when the items are added to or removed from the Queue. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
17551755

17561756
## 7.4.5. Using Set
17571757

@@ -1784,7 +1784,7 @@ hz.getSet('my-distributed-set').then(function (s) {
17841784
});
17851785
```
17861786

1787-
Hazelcast Set uses `ItemListener` to listen to events that occur when items are added to and removed from the Set. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
1787+
Hazelcast Set uses `ItemListener` to listen to the events that occur when the items are added to or removed from the Set. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
17881788

17891789
## 7.4.6. Using List
17901790

@@ -1815,7 +1815,7 @@ hz.getList('my-distributed-list').then(function (l) {
18151815
});
18161816
```
18171817

1818-
Hazelcast List uses `ItemListener` to listen to events that occur when items are added to and removed from the List. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
1818+
Hazelcast List uses `ItemListener` to listen to the events that occur when the items are added to or removed from the List. See the [Item Listener section](#7523-item-listener) for information on how to create an item listener object and register it.
18191819

18201820
## 7.4.7. Using Ringbuffer
18211821

@@ -1865,7 +1865,7 @@ hz.getReliableTopic("my-distributed-topic").then(function (t) {
18651865
});
18661866
```
18671867

1868-
Hazelcast Reliable Topic uses `MessageListener` to listen to events that occur when a message is received. See the [Message Listener section](#7524-message-listener) for information on how to create a message listener object and register it.
1868+
Hazelcast Reliable Topic uses `MessageListener` to listen to the events that occur when a message is received. See the [Message Listener section](#7524-message-listener) for information on how to create a message listener object and register it.
18691869

18701870
## 7.4.9 Using Lock
18711871

0 commit comments

Comments
 (0)