From 83ade6ce354b0c273a5502f6a31204b07d696f29 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Wed, 21 Dec 2022 14:03:07 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ba464b4..46d3608 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ Combining these two articles is the basis for our Sample app. A typical approach to allow C++ in Swift-based iOS app will be using * _Swift_ : Anything iOS-related (UI, file system access, Internet, ...) - * _Objective-C_ : Simple classes (like [`LLVMBridge`](Sample/Sample/LLVMBridge.h) in our Sample app) to expose service written in C++. + * _Objective-C_ : Simple classes (like [`LLVMBridge`](Sample/LLVMBridge.h) in our Sample app) to expose service written in C++. The main role is to convert data types between C++ and Swift. For example: Swift's `Data` to Objective-C's `NSData` to C++'s buffer `char*` (and length). * _C++_ : Actual implementation of processing functionality.