Skip to content

Commit c8006d1

Browse files
committed
docs: fix build
1 parent 4bcaafa commit c8006d1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

oeps/best-practices/oep-0068-bp-content-identifiers.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Summary
9898

9999
.. list-table::
100100
:header-rows: 1
101-
:widths: 20 30 25 25
101+
:widths: 18 28 15 22 17
102102

103103
* - Category
104104
- What it is
@@ -291,12 +291,14 @@ dependency on any particular database or deployment.
291291
**When to use:** Use UUIDs when an object needs an identity that is stable and globally
292292
unique across every Open edX instance, allowing the objects to be shared outside and
293293
across instances without risk of collision. For example:
294+
294295
* Learner certificates awarded on different Open edX instances should have distinct
295296
UUIDs, even if their instance-local identifiers (course run key, user primary
296297
key) are identical.
297-
* Changelog entries should have distinct UUIDs, even the changes are identical.
298+
* Changelog entries should have distinct UUIDs, even if the changes are identical.
298299

299300
**How to name:**
301+
300302
* Python variables and attributes holding a parsed ``uuid.UUID`` object → ``_uuid`` suffix.
301303
* Django Model Fields and Serializer Fields that convert between UUID objects and strings →
302304
``_uuid`` suffix.

0 commit comments

Comments
 (0)