Skip to content

Commit

Permalink
Update example
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Oct 20, 2020
1 parent cd60248 commit 2adfaa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ annotated_events = AnnotatedEventsTable(
# add a custom indexed (ragged) column to represent whether each event time was a bad event
annotated_events.add_column(
name='bad_event',
description='extra metadata for each event type',
description='whether each event time should be excluded',
index=True
)
# add an event type (row) to the AnnotatedEventsTable instance
Expand Down
2 changes: 1 addition & 1 deletion src/pynwb/tests/test_example_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_example_usage():
# add a custom indexed (ragged) column to represent whether each event time was a bad event
annotated_events.add_column(
name='bad_event',
description='extra metadata for each event type',
description='whether each event time should be excluded',
index=True
)
# add an event type (row) to the AnnotatedEventsTable instance
Expand Down

0 comments on commit 2adfaa0

Please sign in to comment.