From 02086fd1504c73e51af00c147d2eeedb52e57e55 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Mon, 23 Dec 2024 03:00:49 -0600 Subject: [PATCH] Change RPC to IPC language in mobile bare docs (#159) `bare-kit` API switched to just an IPC abstraction. --- examples/bare-on-mobile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bare-on-mobile.md b/examples/bare-on-mobile.md index 5732f2f..904f3ba 100644 --- a/examples/bare-on-mobile.md +++ b/examples/bare-on-mobile.md @@ -2,7 +2,7 @@ Bare can be embedded into mobile applications to serve as the "Pear-end" where the peer-to-peer code of the application is run. -To get started with embedding [Bare](../reference/bare/overview.md) into an [Expo](https://expo.dev/) mobile application use the [Bare on Expo](https://github.com/holepunchto/bare-expo) example as reference. This example integrates Bare as an isolated thread, called a worklet[^1], via [`react-native-bare-kit`](https://github.com/holepunchto/react-native-bare-kit). All code passed when starting the worklet will run in the Bare runtime and can be communicated with via remote procedure calls. +To get started with embedding [Bare](../reference/bare/overview.md) into an [Expo](https://expo.dev/) mobile application use the [Bare on Expo](https://github.com/holepunchto/bare-expo) example as reference. This example integrates Bare as an isolated thread, called a worklet[^1], via [`react-native-bare-kit`](https://github.com/holepunchto/react-native-bare-kit). All code passed when starting the worklet will run in the Bare runtime and can be communicated with via an inter-process communication (IPC) stream. [^1]: This term was chosen to avoid ambiguity with worker threads as implemented by .