Skip to content

Commit 0d54253

Browse files
committed
Fixes
1 parent d668956 commit 0d54253

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

docs/general/quick-start.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ $ composer require phpstreamserver/core phpstreamserver/http-server
1515

1616
### Configure a simple server
1717

18-
```php
19-
// server.php
20-
18+
```php title="server.php"
2119
use Amp\Http\Server\HttpErrorException;
2220
use Amp\Http\Server\Request;
2321
use Amp\Http\Server\Response;

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const config = {
7878
label: 'Docs',
7979
},
8080
{
81-
href: 'https://github.com/luzrain/phpstreamserver',
81+
href: 'https://github.com/phpstreamserver/phpstreamserver',
8282
label: 'GitHub',
8383
position: 'right',
8484
},
@@ -101,7 +101,7 @@ const config = {
101101
items: [
102102
{
103103
label: 'PHPStreamServer',
104-
href: 'https://github.com/luzrain/phpstreamserver',
104+
href: 'https://github.com/phpstreamserver/phpstreamserver',
105105
},
106106
{
107107
label: 'PHPStreamServer runtime for symfony applications',

sidebars.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const sidebars = {
2828
'general/configuration',
2929
],
3030
collapsible: false,
31+
collapsed: false,
3132
},
3233
{
3334
type: 'category',
@@ -40,7 +41,7 @@ const sidebars = {
4041
'plugins/file-monitor',
4142
'plugins/metrics',
4243
],
43-
collapsible: true,
44+
collapsible: false,
4445
collapsed: false,
4546
},
4647
],

src/components/HomepageFeatures/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ function Feature({icon, title, description}) {
5757
<div className={clsx('col col--4')}>
5858
<div className="padding-horiz--md">
5959
<Heading as="h3" className={styles.featureTitle}>
60-
<span className={styles.featureSvg}>
61-
{icon}
62-
</span>
63-
<span>
64-
{title}
65-
</span>
60+
<span className={styles.featureSvg}>
61+
{icon}
62+
</span>
63+
<span>
64+
{title}
65+
</span>
6666
</Heading>
6767
<p>{description}</p>
6868
</div>

0 commit comments

Comments
 (0)