1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-22 15:57:46 +02:00

Merge pull request #13 from andrewpollack/patch-10

Minor punctuation update
This commit is contained in:
Martin Geisler 2022-12-21 19:03:19 +01:00 committed by GitHub
commit d4655aae9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
# Interoperability
Rust has excellent support for interoperability with other languages. This means
that you can
that you can:
* Call Rust functions from other languages
* Call functions written in other languages from Rust
* Call Rust functions from other languages.
* Call functions written in other languages from Rust.
When you call functions in a foreign language we say that you're using a
_foreign function interface_, also known as FFI.