Skip to content

Commit f59aa6e

Browse files
committed
more grammatical fixes
1 parent cb25bc0 commit f59aa6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

01-DataJoint Basics - Interactive.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@
983983
"cell_type": "markdown",
984984
"metadata": {},
985985
"source": [
986-
"All mice that has a session"
986+
"All mice that have a session"
987987
]
988988
},
989989
{
@@ -1100,7 +1100,7 @@
11001100
"source": [
11011101
"Behavior of join:\n",
11021102
"\n",
1103-
"1. match the common field(s) of the primary keys in the two tables\n",
1103+
"1. match the primary keys of common field(s)in the two tables\n",
11041104
"2. do a combination of the non-matched part of the primary key\n",
11051105
"3. listing out the secondary attributes for each combination\n",
11061106
"4. if two tables have secondary attributes that share a same name, it will throw an error. To join, we need to rename that attribute for at least one of the tables."

01-DataJoint Basics - Interactive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ class Session(dj.Manual):
401401

402402
# ### Restriction one table with another
403403

404-
# All mice that has a session
404+
# All mice that have a session
405405

406406
Mouse & Session
407407

@@ -434,7 +434,7 @@ class Session(dj.Manual):
434434

435435
# Behavior of join:
436436
#
437-
# 1. match the common field(s) of the primary keys in the two tables
437+
# 1. match the primary keys of common field(s)in the two tables
438438
# 2. do a combination of the non-matched part of the primary key
439439
# 3. listing out the secondary attributes for each combination
440440
# 4. if two tables have secondary attributes that share a same name, it will throw an error. To join, we need to rename that attribute for at least one of the tables.

0 commit comments

Comments
 (0)