Skip to content

Commit 07ea22d

Browse files
authored
Merge pull request #1328 from goodactive/2.x
chore: fix some typos in comments
2 parents f405cf2 + 184e19a commit 07ea22d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

_ide_helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12924,7 +12924,7 @@
1292412924
$instance->substituteImplicitBindings($route);
1292512925
}
1292612926
/**
12927-
* Register a callback to to run after implicit bindings are substituted.
12927+
* Register a callback to run after implicit bindings are substituted.
1292812928
*
1292912929
* @param callable $callback
1293012930
* @return \Illuminate\Routing\Router

app/Http/Controllers/ItemController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function edit(int $id): View
185185
{
186186
// Get the item
187187
$item = Item::find($id);
188-
if ($item->appid === null && $item->class !== null) { // old apps wont have an app id so set it
188+
if ($item->appid === null && $item->class !== null) { // old apps won't have an app id so set it
189189
$app = Application::where('class', $item->class)->first();
190190
if ($app) {
191191
$item->appid = $app->appid;

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Why not use it as your browser start page? It even has the ability to include a
2525
If you want to see a quick video of Heimdall in use, go to https://youtu.be/GXnnMAxPzMc
2626

2727
## Supported applications
28-
You can use the app to link to any site or application, but Foundation apps will auto fill in the icon for the app and supply a default color for the tile. In addition, Enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size, and download speed while something is downloading.
28+
You can use the app to link to any site or application, but Foundation apps will auto fill in the icon for the app and supply a default color for the tile. In addition, Enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboard. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size, and download speed while something is downloading.
2929

3030
Supported applications are recognized by the title of the application as entered in the title field when adding an application. For example, to add a link to pfSense, begin by typing "p" in the title field and then select "pfSense" from the list of supported applications.
3131

0 commit comments

Comments
 (0)