Skip to content

Commit 4470726

Browse files
committed
Review suggestions
1 parent 45d5a30 commit 4470726

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/tutorials/otio-serialized-schema.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ None
8080

8181
parameters:
8282
- *effects*:
83-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
83+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
8484
- *markers*:
8585
- *metadata*:
8686
- *name*:
@@ -98,7 +98,7 @@ None
9898

9999
parameters:
100100
- *effects*:
101-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
101+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
102102
- *markers*:
103103
- *metadata*:
104104
- *name*:
@@ -271,7 +271,7 @@ None
271271

272272
parameters:
273273
- *effects*:
274-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
274+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
275275
- *markers*:
276276
- *media_reference*:
277277
- *metadata*:
@@ -337,7 +337,7 @@ None
337337

338338
parameters:
339339
- *effects*:
340-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
340+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
341341
- *markers*:
342342
- *metadata*:
343343
- *name*:
@@ -516,7 +516,7 @@ None
516516

517517
parameters:
518518
- *effects*:
519-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
519+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
520520
- *markers*:
521521
- *metadata*:
522522
- *name*:
@@ -565,7 +565,7 @@ None
565565

566566
parameters:
567567
- *effects*:
568-
- *enabled*: Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.
568+
- *enabled*: If true, an Item contributes to compositions. Analogous to Mute in various NLEs.
569569
- *kind*:
570570
- *markers*:
571571
- *metadata*:

src/py-opentimelineio/opentimelineio-bindings/otio_serializableObjects.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ static void define_items_and_compositions(py::module m) {
307307
"markers"_a = py::none(),
308308
"enabled"_a = true,
309309
py::arg_v("metadata"_a = py::none()))
310-
.def_property("enabled", &Item::enabled, &Item::set_enabled, "Enabled sets whether or not an Item contributes to compositions. Analogous to Mute in various NLEs.")
310+
.def_property("enabled", &Item::enabled, &Item::set_enabled, "If true, an Item contributes to compositions. Analogous to Mute in various NLEs.")
311311
.def_property("source_range", &Item::source_range, &Item::set_source_range)
312312
.def("available_range", [](Item* item) {
313313
return item->available_range(ErrorStatusHandler());

0 commit comments

Comments
 (0)