From eb7658e84c09e69c008332ed0163d8f91769ef00 Mon Sep 17 00:00:00 2001 From: Daniel Mangum Date: Wed, 3 May 2023 19:09:15 -0400 Subject: [PATCH] zephyr: fix link to Zephyr application docs Updates a broken link to Zephyr application docs in the hello-world example. Signed-off-by: Daniel Mangum --- samples/zephyr/hello-world/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/zephyr/hello-world/CMakeLists.txt b/samples/zephyr/hello-world/CMakeLists.txt index d42e9085..3cace48a 100644 --- a/samples/zephyr/hello-world/CMakeLists.txt +++ b/samples/zephyr/hello-world/CMakeLists.txt @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.8) # find_package(Zephyr) in order to load application boilerplate: -# http://docs.zephyrproject.org/application/application.html +# https://docs.zephyrproject.org/latest/develop/application/index.html find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(NONE)