@@ -19,7 +19,7 @@ It also describes how
1919enable C++ interoperability by describing how to use C++ interoperability
2020when invoking Swift compiler directly.
2121
22- ## Mixing Swift and C++ Using Swift Package Manager
22+ ## Mixing Swift and C++ Using Swift Package Manager
2323
2424The [ Swift Package Manager] ( /package-manager/ ) allows Swift code to use
2525C++ APIs in Swift.
@@ -124,7 +124,7 @@ includes the other headers in the C++ target:
124124// Header file `cxxLibrary.h`
125125#pragma once
126126
127- #include < cxxLibrary/ classImpl.h>
127+ #include < classImpl.h>
128128```
129129
130130The Swift code in the ` swiftCLITool ` can import ` cxxLibrary ` directly:
@@ -211,7 +211,7 @@ header:
211211```
212212
213213
214- ### Using C++ APIs of Imported Framework Target
214+ ### Using C++ APIs of Imported Framework Target
215215
216216The supported C++ functions and types declared in a ** public** C++ header of
217217an Xcode framework target can be used from Swift code in other targets.
@@ -260,7 +260,7 @@ This section describes how to enable and use C++ interoperability
260260when invoking the Swift compiler directly. This allows other
261261build systems to configure a mixed-language Swift and C++ project.
262262
263- ### Enabling C++ Interoperability in the Swift Compiler
263+ ### Enabling C++ Interoperability in the Swift Compiler
264264
265265The ** ` -cxx-interoperability-mode= ` ** build flag is used to enable C++
266266interoperability in the Swift compiler. It receives the interoperability
0 commit comments