From 4956822a9b56baa0b2baf3658bf9c9fb84e2e65e Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Sat, 26 Oct 2024 10:43:24 +0900 Subject: [PATCH] Improve a sentence --- documentation/docs/detailed-techniques.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/detailed-techniques.md b/documentation/docs/detailed-techniques.md index 08abd19c..2982881c 100644 --- a/documentation/docs/detailed-techniques.md +++ b/documentation/docs/detailed-techniques.md @@ -8,7 +8,7 @@ We've covered how to pass signals[^1] between Dart and Rust in the previous tuto - **Field `binary`:** This is a field designed to handle large binary data, potentially up to a few gigabytes. You can send any kind of binary data you wish, such as a high-resolution image or file data. This field carries empty `Uint8List` or `Vec` if the message is not marked as binary signal. -It's important to note that creating a Protobuf `message` larger than a few megabytes is not recommended. For large data, split them into multiple signals, or use the `binary` field.[^2] +It's important to note that creating a Protobuf `message` larger than a few megabytes is not recommended. For large data, split them into multiple signals, or use the `binary` field instead.[^2] [^1]: Rinf relies solely on native FFI for communication, avoiding the use of web protocols or hidden threads. The goal is to minimize performance overhead as much as possible.