diff --git a/docs/usage/nodes_healthcheck.md b/docs/usage/nodes_healthcheck.md index 59e48518b92..9bbbeaf5e0c 100644 --- a/docs/usage/nodes_healthcheck.md +++ b/docs/usage/nodes_healthcheck.md @@ -6,7 +6,7 @@ Starting from 8.17.0 version Network Graph shows nodes connection based on known - **Priority route**: set by the user, it's the first route the controller tries - **Last working route**: the last route that worked for the node -- **Next last working route**: the next route that will be tried if the last working route fails +- **Next to last working route**: the next route that will be tried if the last working route fails By clicking on nodes a panel will open containing more detailed node information. At the bottom of this panel there is a button `DIAGNOSE` that opens a dialog that allows to perform health checks on that node. diff --git a/src/components/custom/ZwaveGraph.vue b/src/components/custom/ZwaveGraph.vue index 776ee2432f3..be50a5e693c 100644 --- a/src/components/custom/ZwaveGraph.vue +++ b/src/components/custom/ZwaveGraph.vue @@ -443,7 +443,7 @@ export default { { icon: 'more_horiz', textColor: '', - text: 'Next last working route', + text: 'Next to last working route', }, { color: '#8b0000', @@ -1197,7 +1197,7 @@ export default { RouteKind.LWR, ) - // parse node NLWR (next last working route) + // parse node NLWR (next to last working route) this.parseRouteStats( edges, hubNode,