Skip to content

Commit 0a4e13c

Browse files
Apply suggestions from code review
Co-authored-by: Honza Javorek <[email protected]>
1 parent 7ee7c0d commit 0a4e13c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sources/academy/tutorials/apify_actors/adding_rapidapi_project.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ You’ll need an [Apify account](https://console.apify.com/sign-in) - **it’s f
2828
curl -fsSL https://apify.com/install-cli.sh | bash
2929
```
3030

31-
:::info CLI installation
31+
:::info Other ways to install the CLI
3232

33-
For more information, check the [CLI installation page](https://docs.apify.com/cli/docs/installation).
33+
Check the [CLI installation page](https://docs.apify.com/cli/docs/installation) for more details and all the options.
3434

3535
:::
3636

3737
### Step 1: Initialize the Actor structure
3838

39-
Once you have Apify CLI, you can run the following command:
39+
Once you have the Apify CLI, run the following command:
4040

4141
```bash
4242
apify init
@@ -46,9 +46,9 @@ The command sets up an Actor project in your current directory by creating `acto
4646

4747
### Step 2: Add Actor logic
4848

49-
The first important thing is the initialization of the Actor. The second is the correct mapping of the PORT. Check the following example for inspiration:
49+
The initialization of the Actor is the first important thing. The second is the correct mapping of the PORT. Check the following example for inspiration:
5050

51-
```jsx
51+
```js
5252
await Actor.init(); // Initializes the Actor
5353

5454
const app = express();

0 commit comments

Comments
 (0)