Skip to content

Commit a56d634

Browse files
fix grammar in docstring
Co-authored-by: Raphael Guzman <[email protected]>
1 parent 67dda6c commit a56d634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datajoint/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def insert(self, rows, replace=False, skip_duplicates=False, ignore_extra_fields
301301
# prohibit direct inserts into auto-populated tables
302302
if not allow_direct_insert and not getattr(self, '_allow_insert', True):
303303
raise DataJointError(
304-
'Inserts into an auto-populated table can only done inside '
304+
'Inserts into an auto-populated table can only be done inside '
305305
'its make method during a populate call.'
306306
' To override, set keyword argument allow_direct_insert=True.')
307307

0 commit comments

Comments
 (0)