diff --git a/_ide_helper.php b/_ide_helper.php index d0d4e5bf0..ccc768b96 100644 --- a/_ide_helper.php +++ b/_ide_helper.php @@ -12924,7 +12924,7 @@ $instance->substituteImplicitBindings($route); } /** - * Register a callback to to run after implicit bindings are substituted. + * Register a callback to run after implicit bindings are substituted. * * @param callable $callback * @return \Illuminate\Routing\Router diff --git a/app/Http/Controllers/ItemController.php b/app/Http/Controllers/ItemController.php index f8fda57dd..07521b313 100644 --- a/app/Http/Controllers/ItemController.php +++ b/app/Http/Controllers/ItemController.php @@ -185,7 +185,7 @@ public function edit(int $id): View { // Get the item $item = Item::find($id); - if ($item->appid === null && $item->class !== null) { // old apps wont have an app id so set it + if ($item->appid === null && $item->class !== null) { // old apps won't have an app id so set it $app = Application::where('class', $item->class)->first(); if ($app) { $item->appid = $app->appid; diff --git a/readme.md b/readme.md index 507cf7ea3..32997f472 100644 --- a/readme.md +++ b/readme.md @@ -25,7 +25,7 @@ Why not use it as your browser start page? It even has the ability to include a If you want to see a quick video of Heimdall in use, go to https://youtu.be/GXnnMAxPzMc ## Supported applications -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. +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. 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.