Skip to content

Commit 08b33e0

Browse files
committed
chore: fix a few typos
1 parent 0667e88 commit 08b33e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Web/Documentation/content/main/0-getting-started/00-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ final readonly class MigrateUpCommand
8383
}
8484
```
8585

86-
This is a [console command](../3-console/02-building-console-commands). Console commands can be defined in any class, as long as the `#[ConsoleCommand]` attribute is used on a method. Command arguments are defined as the method's arguments, effectively removing the need to learn some specific framework syntax.
86+
This is a [console command](../3-console/02-building-console-commands). Console commands can be defined in any class, as long as the {b`#[Tempest\Console\ConsoleCommand]`} attribute is used on a method. Command arguments are defined as the method's arguments, effectively removing the need to learn some specific framework syntax.
8787

88-
This example also shows how to [register events globally](../2-tempest-in-depth/03-events) using the `#[EventHandler]`.
88+
This example also shows how to [register events globally](../2-tempest-in-depth/03-events) using the {b`#[Tempest\EventBus\EventHandler]`}.
8989

9090
---
9191

src/Web/Documentation/content/main/0-getting-started/01-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To get started with a new Tempest project, you may use {`tempest/app`} as the st
2020
{:hl-keyword:cd:} {:hl-type:my-app:}
2121
```
2222

23-
If you have a dedicated development environment, you may then access your application by opening `https://my-app.test` in your browser. Otherwise, you may use PHP's built-in server:
23+
If you have a dedicated development environment, you may then access your application by opening `{txt}https://my-app.test` in your browser. Otherwise, you may use PHP's built-in server:
2424

2525
```sh
2626
{:hl-keyword:php:} tempest serve

src/Web/Documentation/content/main/1-essentials/01-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Using named arguments, it is also possible to manually specify parameters on the
4343
$this->container->invoke(TrackOperatingAircraft::class, type: AircraftType::PC12);
4444
```
4545

46-
The `{php}\Tempest\invoke()` serves the same purpose when the container is not directly accessible.
46+
The `{php}\Tempest\invoke()` function serves the same purpose when the container is not directly accessible.
4747

4848
### Locating a dependency
4949

0 commit comments

Comments
 (0)