@barchart/portfolio-api-common 1.2.42 → 1.2.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,7 @@ module.exports = (() => {
20
20
  }
21
21
 
22
22
  /**
23
- * Given a set of transaction, ensures that all sequence numbers and dates
23
+ * Given an array of transactions, ensures that all sequence numbers and dates
24
24
  * are properly ordered.
25
25
  *
26
26
  * @public
@@ -33,7 +33,7 @@ module.exports = (() => {
33
33
  }
34
34
 
35
35
  /**
36
- * Given a set of transaction, when transaction references are present, ensures
36
+ * Given an array of transactions, when transaction references are present, ensures
37
37
  * that no transactions within the set reference the same transaction.
38
38
  *
39
39
  * @public
@@ -71,7 +71,7 @@ module.exports = (() => {
71
71
  }
72
72
 
73
73
  /**
74
- * Given a set of transaction, returns the index of the first transaction that with an invalid
74
+ * Given an array of transactions, returns the index of the first transaction that with an invalid
75
75
  * sequence number or date.
76
76
  *
77
77
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.2.42",
3
+ "version": "1.2.43",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -1048,7 +1048,7 @@ module.exports = (() => {
1048
1048
  }
1049
1049
 
1050
1050
  /**
1051
- * Given a set of transaction, ensures that all sequence numbers and dates
1051
+ * Given an array of transactions, ensures that all sequence numbers and dates
1052
1052
  * are properly ordered.
1053
1053
  *
1054
1054
  * @public
@@ -1061,7 +1061,7 @@ module.exports = (() => {
1061
1061
  }
1062
1062
 
1063
1063
  /**
1064
- * Given a set of transaction, when transaction references are present, ensures
1064
+ * Given an array of transactions, when transaction references are present, ensures
1065
1065
  * that no transactions within the set reference the same transaction.
1066
1066
  *
1067
1067
  * @public
@@ -1099,7 +1099,7 @@ module.exports = (() => {
1099
1099
  }
1100
1100
 
1101
1101
  /**
1102
- * Given a set of transaction, returns the index of the first transaction that with an invalid
1102
+ * Given an array of transactions, returns the index of the first transaction that with an invalid
1103
1103
  * sequence number or date.
1104
1104
  *
1105
1105
  * @public