Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Commit 01456ed

Browse files
author
Ilya Volodarsky
committed
update docs
1 parent 56a22ce commit 01456ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cohort(new Date('1/1/2014'), new Date('2/1/2014'), function (err, customers) {
2828
});
2929
```
3030

31-
And the `customers` object lets you query information about this cohort.
31+
And the returned `customers` object lets you dive deeper into the cohort.
3232

3333
#### Number of Customers
3434

@@ -73,7 +73,7 @@ customers.delinquent().count();
7373

7474
#### Subscriptions
7575

76-
You can learn about your active subscriptions too
76+
You can learn about your active subscriptions too:
7777

7878
```js
7979
customers.subscriptions().count();
@@ -117,7 +117,7 @@ And you can query the monthly recurring revenue by subscription `start` within
117117
customers.subscriptions().active().mrr(new Date('1/15/2014'), new Date('1/16/2014'));
118118
```
119119

120-
Remember that the montly recurring revenue does not equal charges. For example, if a customer upgrades from a $29 plan to a $79 plan today, they will pro-rated for the rest of their billing period. That means you did not make the $79 yet, but you'll make the difference next month. For hard cash, use charges.
120+
Remember that the montly recurring revenue does not equal charges. For example, if a customer upgrades from a $29 plan to a $79 plan today, they will pro-rated for the rest of their billing period. That means you did not make the $79 yet, but you'll make the difference next month. For hard cash, use [stripe-charges](https://github.com/segmentio/stripe-charges).
121121

122122
#### Plans
123123

0 commit comments

Comments
 (0)