Skip to content

[10.x] Fix typos #48513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
- [10.x] Prompts by [@jessarcher](https://github.com/jessarcher) in https://github.com/laravel/framework/pull/46772
- [10.x] Migrate JSON data to shared InputBag by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/framework/pull/47914
- [10.x] Fix `Factory::configure()` return type by [@axlon](https://github.com/axlon) in https://github.com/laravel/framework/pull/47920
- [10.x] Fix Http global middleware for queue, octane, and dependecy injection by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/framework/pull/47915
- [10.x] Fix Http global middleware for queue, octane, and dependency injection by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/framework/pull/47915

## [v10.16.1](https://github.com/laravel/framework/compare/v10.17.1...v10.16.1) - 2023-07-26

Expand Down Expand Up @@ -353,7 +353,7 @@

### Reverted

- Revert "[10.x] Fix inconsistentcy between report and render methods" ([#47326](https://github.com/laravel/framework/pull/47326))
- Revert "[10.x] Fix inconsistency between report and render methods" ([#47326](https://github.com/laravel/framework/pull/47326))

### Changed

Expand All @@ -372,7 +372,7 @@
### Fixed

- Fixed bug when function wrapped around definition of related factory ([#47168](https://github.com/laravel/framework/pull/47168))
- Fixed inconsistentcy between report and render methods ([#47201](https://github.com/laravel/framework/pull/47201))
- Fixed inconsistency between report and render methods ([#47201](https://github.com/laravel/framework/pull/47201))
- Fixes Model::isDirty() when AsCollection or AsEncryptedCollection have arguments ([#47235](https://github.com/laravel/framework/pull/47235))
- Fixed escaped String for JSON_CONTAINS ([#47244](https://github.com/laravel/framework/pull/47244))
- Fixes missing output on ProcessFailedException exception ([#47285](https://github.com/laravel/framework/pull/47285))
Expand Down Expand Up @@ -704,7 +704,7 @@

### Reverted

- Revert "[10.x] Fix custom themes not reseting on Markdown renderer" ([#46328](https://github.com/laravel/framework/pull/46328))
- Revert "[10.x] Fix custom themes not resetting on Markdown renderer" ([#46328](https://github.com/laravel/framework/pull/46328))

### Fixed

Expand Down Expand Up @@ -770,7 +770,7 @@
### Fixed

- Fixing issue where 0 is discarded as a valid timestamp ([#46158](https://github.com/laravel/framework/pull/46158))
- Fix custom themes not reseting on Markdown renderer ([#46200](https://github.com/laravel/framework/pull/46200))
- Fix custom themes not resetting on Markdown renderer ([#46200](https://github.com/laravel/framework/pull/46200))

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ChannelListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function forCli($channels)
}

/**
* Determine and return the output for displaying the number of registered chanels in the CLI output.
* Determine and return the output for displaying the number of registered channels in the CLI output.
*
* @param \Illuminate\Support\Collection $channels
* @param int $terminalWidth
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/DocsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DocsCommand extends Command
*
* @var string
*/
protected $help = 'If you would like to perform a content search against the documention, you may call: <fg=green>php artisan docs -- </><fg=green;options=bold;>search query here</>';
protected $help = 'If you would like to perform a content search against the documentation, you may call: <fg=green>php artisan docs -- </><fg=green;options=bold;>search query here</>';

/**
* The HTTP client instance.
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Process/FakeInvokedProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public function wait(callable $output = null)
}

/**
* Get the ultimate process result that wil be returned by this "process".
* Get the ultimate process result that will be returned by this "process".
*
* @return \Illuminate\Contracts\Process\ProcessResult
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Process/FakeProcessDescription.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function toSymfonyProcess(string $command)
}

/**
* Conver the process description into a process result.
* Convert the process description into a process result.
*
* @param string $command
* @return \Illuminate\Contracts\Process\ProcessResult
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Process/PendingProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function forever()
}

/**
* Set the additional environent variables for the process.
* Set the additional environment variables for the process.
*
* @param array $environment
* @return $this
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/View/InvokableComponentVariable.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function resolveDisplayableValue()
}

/**
* Get an interator instance for the variable.
* Get an iterator instance for the variable.
*
* @return \ArrayIterator
*/
Expand Down