Skip to content

Commit 5c9d3e1

Browse files
committed
spelling + grammar
1 parent a012cee commit 5c9d3e1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/develop/php/set-up.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ Configure your local development environment to get started developing with Temp
3737

3838
Make sure you have PHP installed.
3939

40-
**If you don't have PHP:** Visit official website to [download and install](https://www.php.net/downloads.php) it.
40+
**If you don't have PHP:** Visit the official website to [download and install](https://www.php.net/downloads.php) it.
4141

4242
### GRPC extension
4343

4444
GRPC extension is required to work with RoadRunner application server.
4545

46-
**If you don't have `ext-grpc` installed:** Visit official website to [download and install](https://docs.cloud.google.com/php/docs/reference/help/grpc) it.
46+
**If you don't have `ext-grpc` installed:** Visit the official website to [download and install](https://docs.cloud.google.com/php/docs/reference/help/grpc) it.
4747

48-
:::tip GRCP Installation Tip
48+
:::tip GRPC Installation Tip
4949

50-
On macOS with Apple Silicon (M1/M2/M3/M4) and PHP 8.3, `pecl install grpc` may appear to hang. If this happens, try installing a specific version:
50+
On macOS with Apple Silicon (M1/M2/M3/M4) and PHP 8.3, `pecl install grpc` may appear to hang or install indefinitely. If this happens, try installing a specific version:
5151

5252
```bash
5353
pecl install channel://pecl.php.net/grpc-1.78.0RC2
@@ -75,7 +75,7 @@ composer init --name="myproject/quickstart" -n
7575

7676
## Create a Project
7777

78-
Now that you have your build tool installed, create a project to manage your dependencies and build your Temporal application.
78+
Now that you have PHP installed, create a project to manage your dependencies and build your Temporal application.
7979

8080
</SetupStep>
8181

@@ -114,7 +114,7 @@ Your final `composer.json` should look like this. After updating, run `composer
114114
<>
115115
<Tabs>
116116
<TabItem value="cli" label="CLI">
117-
<p>Download RoadRunner by the following command</p>
117+
<p>Download RoadRunner with the following command:</p>
118118
<CodeSnippet language="bash">
119119
./vendor/bin/rr get
120120
</CodeSnippet>
@@ -125,7 +125,7 @@ Your final `composer.json` should look like this. After updating, run `composer
125125
<CodeSnippet language="bash">
126126
composer require --dev internal/dload
127127
</CodeSnippet>
128-
<p>Create configuration file named `dload.xml` with the following content</p>
128+
<p>Create a configuration file named `dload.xml` with the following content:</p>
129129
<CodeSnippet language="xml">
130130
{`<?xml version="1.0"?>
131131
<dload xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -138,7 +138,7 @@ Your final `composer.json` should look like this. After updating, run `composer
138138
</dload>
139139
`}
140140
</CodeSnippet>
141-
<p>Finally, download specific RoadRunner binary</p>
141+
<p>Finally, download the RoadRunner binary:</p>
142142
<CodeSnippet language="bash">
143143
./vendor/bin/dload
144144
</CodeSnippet>
@@ -231,7 +231,7 @@ Choose your operating system to install Temporal CLI:
231231
<CodeSnippet language="xml">
232232
{`<download software="temporal" version="^1.5"/>`}
233233
</CodeSnippet>
234-
<p>So the final configuration file will looks like the following</p>
234+
<p>The final configuration file should look like this:</p>
235235
<CodeSnippet language="xml">
236236
{`<?xml version="1.0"?>
237237
<dload xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -433,7 +433,7 @@ $result = $workflowStub->sayHello('Temporal');
433433
echo "Result: {$result}\n";
434434
```
435435

436-
While your worker is still running, open a new terminal and run:
436+
While your Worker is still running, open a new terminal and run:
437437

438438
```bash
439439
php client.php

0 commit comments

Comments
 (0)