From 21f9438f0b0582a4bd2df7b34eb26931eeb58f1c Mon Sep 17 00:00:00 2001 From: talksik Date: Fri, 30 Jun 2023 14:57:29 -0700 Subject: [PATCH] fixing terms --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f7f749..6209a36 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ match event { rtc_track.on_frame(Box::new(move |frame, buffer| { // Just received a video frame! // The buffer is YuvEncoded, you can decode it to ABGR by using our yuv_helper - // See the simple_room example for the conversion + // See the basic_room example for the conversion }); } else { // Audio Track.. @@ -106,7 +106,7 @@ match event { ## Examples -We made a [simple room demo](https://github.com/livekit/client-sdk-native/tree/main/examples/basic_room) leveraging all the current SDK features. Videos are rendered using wgpu and egui. +We made a [basic room demo](https://github.com/livekit/client-sdk-native/tree/main/examples/basic_room) leveraging all the current SDK features. Videos are rendered using wgpu and egui. ![](https://github.com/livekit/client-sdk-rust/blob/main/examples/images/simple-room-demo.gif)