Skip to content

Commit c92e6e3

Browse files
committed
Address review feedback
1 parent d11b2bd commit c92e6e3

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

docs/02_guides/pay_per_event.mdx renamed to docs/03_concepts/12_pay_per_event.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ When you plan to start using the pay-per-event pricing model for an Actor that i
3838
It is encouraged to test your monetization code on your machine before releasing it to the public. To tell your Actor that it should work in pay-per-event mode, pass it the `ACTOR_TEST_PAY_PER_EVENT` environment variable:
3939

4040
```shell
41-
ACTOR_TEST_PAY_PER_EVENT=true npm start
41+
ACTOR_TEST_PAY_PER_EVENT=true python -m youractor
4242
```
4343

4444
If you also wish to see a log of all the events charged throughout the run, the Apify SDK keeps a log of charged events in a so called charging dataset. Your charging dataset can be found under the `charging_log` name (unless you change your storage settings, this dataset is stored in `storage/datasets/charging_log/`). Please note that this log is not available when running the Actor in production on the Apify platform.
File renamed without changes.
File renamed without changes.

website/src/components/ApiLink.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
1111

1212
const ApiLink = ({ to, children }) => {
1313
return (
14-
<Link to={`/api/${to}`}>{children}</Link>
14+
<Link to={`/reference/${to}`}>{children}</Link>
1515
);
1616

1717
// const version = useDocsVersion();

0 commit comments

Comments
 (0)