Skip to content

Commit d07a0e0

Browse files
committed
Table formatting and typo
1 parent a23de2a commit d07a0e0

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

guide/04-feature-data-and-analysis/part2_branch_versioning_with_parcel_fabrics.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
"source": [
256256
"### Branch Versioning Edit Sessions\n",
257257
"\n",
258-
"A branch versioning edit session is act of obtaining shared and exclusive locks on the feature class to prevent corruption in the branch version. Calling `version.startReading` will set a shared lock on the version which prevents another session from obtaining an exclusive lock. Other sessions can still access the version as read-only. Calling `version.startEditing` will set the exclusive lock which will prevent write access and write access to the version.\n",
258+
"A branch versioning edit session is the act of obtaining shared and exclusive locks on the feature class to prevent corruption in the branch version. Calling `version.startReading` will set a shared lock on the version which prevents another session from obtaining an exclusive lock. Other sessions can still access the version as read-only. Calling `version.startEditing` will set the exclusive lock which will prevent read access and write access to the version.\n",
259259
"\n",
260260
"Keeping track of where one is within the edit sessions is made simple with a built in context manager."
261261
]

guide/04-feature-data-and-analysis/part4_query_parcels.ipynb

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343
"cell_type": "markdown",
4444
"metadata": {},
4545
"source": [
46-
"<table style='float:left'><thead><th>Field Name</th><th>Type</th></thead><tbody><tr><td>GlobalID</td><td>GUID</td></tr></tbody>"
46+
"|Field Name |Type |\n",
47+
"|------------|------|\n",
48+
"|GlobalID |GUID |"
4749
]
4850
},
4951
{
@@ -62,7 +64,10 @@
6264
"cell_type": "markdown",
6365
"metadata": {},
6466
"source": [
65-
"<table style='float:left'><thead><th>Field Name</th><th>Type</th></thead><tbody><tr><td>CreatedByRecord</td><td>GUID</td></tr><tr><td>RetiredByRecord</td><td>GUID</td></tr></tbody>"
67+
"|Field Name |Type |\n",
68+
"|----------------|-----------|\n",
69+
"|CreatedByRecord |GUID |\n",
70+
"|RetiredByRecord |GUID |"
6671
]
6772
},
6873
{
@@ -361,7 +366,7 @@
361366
"name": "python",
362367
"nbconvert_exporter": "python",
363368
"pygments_lexer": "ipython3",
364-
"version": "3.9.11"
369+
"version": "3.9.15"
365370
},
366371
"toc": {
367372
"base_numbering": 1,

0 commit comments

Comments
 (0)