aboutsummaryrefslogtreecommitdiff
path: root/docs/serialization.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-31 02:11:03 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-31 02:11:03 -0400
commit7a172be6213839a3d023ba21c3bafd7540a4bfe8 (patch)
tree5646ba0e4c0690fe64711fb77658308541de695b /docs/serialization.md
parentd3655740cc6a8e6c4788946af412065fb52f51dc (diff)
Remove threads and mutexed data from the language in favor of a
module-based approach
Diffstat (limited to 'docs/serialization.md')
-rw-r--r--docs/serialization.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/serialization.md b/docs/serialization.md
index 764a6b27..0f158be1 100644
--- a/docs/serialization.md
+++ b/docs/serialization.md
@@ -70,7 +70,6 @@ only 9 bytes for the whole thing!
## Unserializable Types
-Unfortunately, not all types can be easily serialized. In particular,
-`Thread`s, types, and functions cannot be serialized because their data
-contents cannot be easily converted to portable byte arrays. All other
-datatypes _can_ be serialized.
+Unfortunately, not all types can be easily serialized. In particular, types and
+functions cannot be serialized because their data contents cannot be easily
+converted to portable byte arrays. All other datatypes _can_ be serialized.