Skip to content

Commit 6705236

Browse files
Feedback
1 parent a6f5651 commit 6705236

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/navigate/advanced-programming/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ items:
391391
href: ../../standard/native-interop/preserve-sig.md
392392
- name: Exceptions
393393
href: ../../standard/native-interop/exceptions-interoperability.md
394-
- name: Target ABI support
394+
- name: Native interoperability ABI support
395395
href: ../../standard/native-interop/abi-support.md
396396
- name: Supplemental API remarks
397397
items:

docs/standard/native-interop/abi-support.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Additional links:
2020

2121
## C++
2222

23-
The [C++ language](https://isocpp.org/) has no defined ABI across all .NET supported platforms and the most popular C++ compiler implementations (that is, MSVC, clang, and GCC). This lack of a consistent ABI makes support difficult to provide.
23+
The [C++ language](https://isocpp.org/) has no defined ABI across all .NET supported platforms and the most popular C++ compiler implementations (that is, MSVC, clang, and GCC). This lack of a consistent ABI makes it difficult to target directly.
2424

2525
The recommended way to interoperate with C++ is to export functions marked with [`extern "C"`](/cpp/cpp/extern-cpp) and call them as C functions.
2626

@@ -70,6 +70,7 @@ The reference implementation of the Python run-time, [CPython](https://github.co
7070
Additional links:
7171

7272
* [Providing a C API for an Extension Module](https://docs.python.org/3/extending/extending.html#providing-a-c-api-for-an-extension-module)
73+
* [Python for .NET](https://github.com/pythonnet/pythonnet)
7374

7475
## golang
7576

0 commit comments

Comments
 (0)