Skip to content

Commit 780a86f

Browse files
committed
docs(expt): fix update() documentation
1 parent f43530c commit 780a86f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cellengine/resources/experiment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ def update(self):
324324
325325
Example:
326326
```py
327-
experiment.update({"name": "New Name"})
328-
assert experiment.name == "New Name"
327+
experiment.name = "New Name"
328+
experiment.update()
329329
```
330330
"""
331331
update_properties = {key: self._properties[key] for key in self._changes}

0 commit comments

Comments
 (0)