From a4a1e5a98dab2cac8b00c553049345bcb5dcc4e1 Mon Sep 17 00:00:00 2001 From: dprats Date: Fri, 17 Nov 2023 09:40:14 -0800 Subject: [PATCH] fix motoko playground reference --- blog/features/dfx-deploy-playground.md | 2 +- blog/news-and-updates/2023-07-26-update.mdx | 2 +- docs/developer-docs/setup/playground.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/features/dfx-deploy-playground.md b/blog/features/dfx-deploy-playground.md index ce15aa127f..b21e1cf4a1 100644 --- a/blog/features/dfx-deploy-playground.md +++ b/blog/features/dfx-deploy-playground.md @@ -48,7 +48,7 @@ This command calls the `hello_world_backend` canister that has been deployed to Since the canister has been deployed to the playground, it is important to know the limitations that canisters deployed with the `--playground` flag will be subject to. These restrictions are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Wasm files can't be gzipped. - Wasm files will be analyzed to remove any potentially expensive/malicious operations. - Canisters can use at most 1GB of memory. diff --git a/blog/news-and-updates/2023-07-26-update.mdx b/blog/news-and-updates/2023-07-26-update.mdx index c8fcb3f484..a0a1c3d579 100644 --- a/blog/news-and-updates/2023-07-26-update.mdx +++ b/blog/news-and-updates/2023-07-26-update.mdx @@ -46,7 +46,7 @@ For our last topic today, we're going to briefly introduce a new upcoming featur It is important to note that canisters deployed with the `--playground` flag will be subject to the same restrictions as other canisters deployed to the Motoko playground. These restrictions are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Canisters can use at most 1GB of stable memory. - Canisters can call the management canister to manage itself without being the controller. - Deployed canisters expire after 20 minutes. diff --git a/docs/developer-docs/setup/playground.md b/docs/developer-docs/setup/playground.md index c1c554d32b..d2fc62bd6d 100644 --- a/docs/developer-docs/setup/playground.md +++ b/docs/developer-docs/setup/playground.md @@ -21,7 +21,7 @@ To ensure resources are used fairly by users, proof of work when a user makes a Since Motoko playground is designed for short, small-scale testing, there are limitations and restrictions imposed on canisters deployed to the playground. These limitations are: -- Cycle transfer instructions are silently ignored by the system. +- Cycle transfer instructions are silently ignored by the Motoko playground. - Canisters can use at most 1GB of memory. - Canisters can call the management canister to manage itself without being the controller. - Deployed canisters expire after 20 minutes. Upgrades to canisters reset this timer. When the timer runs out, the canister(s) will be uninstalled.