From 4900ac26a756c58382dd7cd2db9f9afd990a2225 Mon Sep 17 00:00:00 2001 From: Henning Kayser Date: Wed, 13 Aug 2025 13:14:29 +0200 Subject: [PATCH] Fix package name in docs --- docs/build/workspace.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build/workspace.md b/docs/build/workspace.md index e000ac5e89..2a3108d531 100644 --- a/docs/build/workspace.md +++ b/docs/build/workspace.md @@ -15,9 +15,9 @@ Or if you need the changes of an unreleased version of one of your dependencies. ## Let's Get Started In this tutorial we will showcase how to develop two packages in one workspace. -For that we will use the `python_rich` Python package developed in chapter [Building a Python package](python.md) and let it depend on the `python_binding` C++ package developed in chapter [Building a C++ package](cpp.md). +For that we will use the `python_rich` Python package developed in chapter [Building a Python package](python.md) and let it depend on the `cpp_math` C++ package developed in chapter [Building a C++ package](cpp.md). -We will start with the original setup of `python_rich` and copy `python_binding` into a folder called `packages`. +We will start with the original setup of `python_rich` and copy `cpp_math` into a folder called `packages`. The source directory structure now looks like this: ```shell