fix: typo in documentation (#5284)

This commit is contained in:
fred-sch 2024-08-02 21:17:15 +02:00 committed by Henry Schreiner
parent 042c3cfdc0
commit f9ae715d40
No known key found for this signature in database
GPG Key ID: B9D0E45146A241E8

View File

@ -25,7 +25,7 @@ A Python extension module can be created with just a few lines of code:
find_package(pybind11 CONFIG REQUIRED) find_package(pybind11 CONFIG REQUIRED)
pybind11_add_module(example example.cpp) pybind11_add_module(example example.cpp)
install(TARGET example DESTINATION .) install(TARGETS example DESTINATION .)
(You use the ``add_subdirectory`` instead, see the example in :ref:`cmake`.) In (You use the ``add_subdirectory`` instead, see the example in :ref:`cmake`.) In
this example, the code is located in a file named :file:`example.cpp`. Either this example, the code is located in a file named :file:`example.cpp`. Either