From 7d2d5bd2997f57a918523b8abbb0b7e40aaeb1f4 Mon Sep 17 00:00:00 2001 From: nd-novorender Date: Tue, 3 Sep 2024 11:56:52 +0200 Subject: [PATCH] Fix lower case method names --- docs/guides/downloading-scenes-for-offline.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/downloading-scenes-for-offline.mdx b/docs/guides/downloading-scenes-for-offline.mdx index d2e659b..e5dad67 100644 --- a/docs/guides/downloading-scenes-for-offline.mdx +++ b/docs/guides/downloading-scenes-for-offline.mdx @@ -97,7 +97,7 @@ Let's proceed with downloading the loaded scene so it can be used offline. There 2. **Full Download/Sync**: The Web API downloads the entire scene in one go, allowing you to use or view it offline without any delay. -To perform incremental syncing, we only need to add () the scene to the . For a full download, use the method on that scene. To access the view, use . We'll see all these in action in the rest of the guide. +To perform incremental syncing, we only need to add () the scene to the . For a full download, use the method on that scene. To access the view, use . We'll see all these in action in the rest of the guide. :::info Almost all the code you see in this guide is taken from the [Novorender Web App](https://github.com/novorender/novoweb), which is open source and available on GitHub. We encourage you to check out the [offline component code](https://github.com/novorender/novoweb/tree/develop/src/features/offline), which is much more robust and handles many other cases, such as checking for available storage size. @@ -206,7 +206,7 @@ btnFullDownload.onclick = async () => { ### Deleting Offline Scenes -You can use the function to delete a single scene or use to delete all offline data and remove every offline scene. +You can use the function to delete a single scene or use to delete all offline data and remove every offline scene. ### Logging