Skip to content

Commit

Permalink
update code example for "visibility levels" in targets episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
code4yonglei committed Sep 27, 2024
1 parent 7b60cbd commit 0b14011
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions content/targets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,18 @@ Why it is robust to use targets and properties than using variables? Given a tar

.. code-block:: bash
.
├── CMakeLists.txt
├── greeting
├── greeting.cpp
└── greeting.hpp
├── hello_world
├── hello_world.cpp
└── hello_world.hpp
├── main.cpp
└── world
├── world.cpp
└── world.hpp
.
├── CMakeLists.txt
├── greeting
│   ├── greeting.cpp
│   └── greeting.hpp
├── hello_world
│   ├── hello_world.cpp
│   └── hello_world.hpp
├── main.cpp
└── world
├── world.cpp

Check failure on line 114 in content/targets.rst

View workflow job for this annotation

GitHub Actions / Build

Unexpected indentation.
└── world.hpp


In this source code, the main function links to greeting which links to hello_world which links to world.
Expand Down

0 comments on commit 0b14011

Please sign in to comment.