[DOC] misc small fixes

closes #827, #825, #822, #821
This commit is contained in:
Géry Debongnie
2021-02-03 13:37:25 +01:00
committed by aab-odoo
parent 490cf18079
commit af426aa902
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -663,7 +663,7 @@ function makeStore() {
function setup() {
owl.config.mode = "dev";
const env = {store = makeStore()};
const env = {store: makeStore()};
mount(App, { target: document.body, env });
}
```
@@ -939,7 +939,7 @@ For reference, here is the final code:
function setup() {
owl.config.mode = "dev";
const env = {store = makeStore()};
const env = {store: makeStore()};
mount(App, { target: document.body, env });
}