cmake: docs: Fix 'test_relocation' -> 'code_relocation'

Incorrect name used for sample in two places.
This commit fixes these issues.

Signed-off-by: Håkon Øye Amundsen <haakon.amundsen@nordicsemi.no>
This commit is contained in:
Håkon Øye Amundsen 2020-06-16 08:59:16 +00:00 committed by Ioannis Glaropoulos
commit 13cf241ee6
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ This section shows additional configuration options that can be set in
Sample
======
A sample showcasing this feature is provided at
``$ZEPHYR_BASE/samples/application_development/test_relocation/``
``$ZEPHYR_BASE/samples/application_development/code_relocation/``
This is an example of using the code relocation feature.

View file

@ -3,7 +3,7 @@
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(test_relocation)
project(code_relocation)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})