From 85eff6897c02ddb26f0699abee5fa49f87824496 Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Fri, 15 May 2026 13:04:31 +1200 Subject: [PATCH] Move line endings to be a design decision, not a limitation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 50bf021..ddd12cf 100644 --- a/README.md +++ b/README.md @@ -113,8 +113,6 @@ All yamltrip errors inherit from `YAMLTripError`: - **Editor write-back is not atomic.** `Editor` detects external file changes between enter and exit, but the check-then-write is racy. Do not use it with concurrent writers. -- **Line endings preserved as-is.** No CRLF/LF normalization. Mixed line - endings pass through unchanged. ## Design Decisions @@ -128,6 +126,8 @@ All yamltrip errors inherit from `YAMLTripError`: intermediate mappings. Only string keys create new mappings. - **No negative sequence indices.** Python-style negative indexing is not supported. +- **Line endings preserved as-is.** No CRLF/LF normalization. Mixed line + endings pass through unchanged. ## Acknowledgements