From e203586182dbb6c2a6b8b5bd26c073f66c592502 Mon Sep 17 00:00:00 2001 From: Andrew Pollack Date: Wed, 21 Dec 2022 09:38:05 -0800 Subject: [PATCH] Minor punctuation update --- src/android/interoperability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/android/interoperability.md b/src/android/interoperability.md index 5078d310..4f665f2f 100644 --- a/src/android/interoperability.md +++ b/src/android/interoperability.md @@ -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.