about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--edit/005-sandbox.mu2
-rw-r--r--sandbox/005-sandbox.mu2
2 files changed, 2 insertions, 2 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu
index c7b55773..74ca5742 100644
--- a/edit/005-sandbox.mu
+++ b/edit/005-sandbox.mu
@@ -177,7 +177,7 @@ recipe update-recipes [
   screen:address <- next-ingredient
   recipes:address:editor-data <- get *env, recipes:offset
   in:address:array:character <- editor-contents recipes
-  save [recipes.mu], in
+  save [recipes.mu], in  # newlayer: persistence
   reload in
   reply 0/no-errors-found, env/same-as-ingredient:0, screen/same-as-ingredient:1
 ]
diff --git a/sandbox/005-sandbox.mu b/sandbox/005-sandbox.mu
index cc21a284..ddfbef31 100644
--- a/sandbox/005-sandbox.mu
+++ b/sandbox/005-sandbox.mu
@@ -160,7 +160,7 @@ recipe update-recipes [
   local-scope
   env:address:programming-environment-data <- next-ingredient
   screen:address <- next-ingredient
-  in:address:array:character <- restore [recipes.mu]
+  in:address:array:character <- restore [recipes.mu]  # newlayer: persistence
   reload in
   reply 0/no-errors-found, env/same-as-ingredient:0, screen/same-as-ingredient:1
 ]