diff --git a/docs/guides/migrate/devvit-singleton.md b/docs/guides/migrate/devvit-singleton.md index 5c34a769..2b9ae49e 100644 --- a/docs/guides/migrate/devvit-singleton.md +++ b/docs/guides/migrate/devvit-singleton.md @@ -34,7 +34,7 @@ Delete the `devvit.yaml` file from your project root. All configuration is now h ### 3. Handle static assets -If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to define this in update your `devvit.json` to point to these assets: +If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to update your `devvit.json` to point to these assets: ```json { diff --git a/docs/guides/migrate/inline-web-view.md b/docs/guides/migrate/inline-web-view.md index e1700e0f..1ae3d8f5 100644 --- a/docs/guides/migrate/inline-web-view.md +++ b/docs/guides/migrate/inline-web-view.md @@ -16,7 +16,7 @@ Apps can be partially migrated, you don't need to re-write everything! - No postMessage required - Use web native fetch() to server endpoints directly -- App logic is either on the client, or the server, with clear deliniation +- App logic is either on the client, or the server, with clear delineation - Client effects are available directly from web views ## Setting up devvit.json @@ -161,8 +161,6 @@ server.listen(port, () => console.log(`http://localhost:${port}`)); ### Calling your server endpoints -Now - Instead of using `postMessage`, your client-side code can now directly fetch the initial state from the `/api/init` endpoint we defined in the server. ```ts title=/src/client/app.ts diff --git a/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md b/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md index 5c34a769..2b9ae49e 100644 --- a/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md +++ b/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md @@ -34,7 +34,7 @@ Delete the `devvit.yaml` file from your project root. All configuration is now h ### 3. Handle static assets -If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to define this in update your `devvit.json` to point to these assets: +If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to update your `devvit.json` to point to these assets: ```json { diff --git a/versioned_docs/version-0.12/guides/migrate/inline-web-view.md b/versioned_docs/version-0.12/guides/migrate/inline-web-view.md index e1700e0f..1ae3d8f5 100644 --- a/versioned_docs/version-0.12/guides/migrate/inline-web-view.md +++ b/versioned_docs/version-0.12/guides/migrate/inline-web-view.md @@ -16,7 +16,7 @@ Apps can be partially migrated, you don't need to re-write everything! - No postMessage required - Use web native fetch() to server endpoints directly -- App logic is either on the client, or the server, with clear deliniation +- App logic is either on the client, or the server, with clear delineation - Client effects are available directly from web views ## Setting up devvit.json @@ -161,8 +161,6 @@ server.listen(port, () => console.log(`http://localhost:${port}`)); ### Calling your server endpoints -Now - Instead of using `postMessage`, your client-side code can now directly fetch the initial state from the `/api/init` endpoint we defined in the server. ```ts title=/src/client/app.ts