diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
| commit | 37f3e91f6c95d46f161dbde05b0a005fe7e7c17a (patch) | |
| tree | c6e080ebbe7aed267b8ca0c5aec80fece51a5f65 /docs/serialization.md | |
| parent | a201939a8150bc4c2f221925797ea2751c74b77c (diff) | |
Rename "NONE" to "none"
Diffstat (limited to 'docs/serialization.md')
| -rw-r--r-- | docs/serialization.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/serialization.md b/docs/serialization.md index ea21f900..764a6b27 100644 --- a/docs/serialization.md +++ b/docs/serialization.md @@ -52,7 +52,7 @@ cyclic datastructures correctly, enabling you to serialize cyclic structures like circularly linked lists or graphs: ```tomo -struct Cycle(name:Text, next=NONE:@Cycle) +struct Cycle(name:Text, next=none:@Cycle) c := @Cycle("A") c.next = @Cycle("B", next=c) |
