From eebfbe965566eb07d9089a4160041bf7cc6f0c28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtek=20Mikul=C3=A1=C5=A1ek?= <49962499+VMikulasek@users.noreply.github.com> Date: Sun, 19 Oct 2025 13:52:14 +0200 Subject: [PATCH] Fix wording for range operator spacing rule in F# style guide --- docs/fsharp/style-guide/formatting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fsharp/style-guide/formatting.md b/docs/fsharp/style-guide/formatting.md index a78f48945aad8..b6f268185e79a 100644 --- a/docs/fsharp/style-guide/formatting.md +++ b/docs/fsharp/style-guide/formatting.md @@ -660,7 +660,7 @@ x ^^^ y // Bitwise xor, also for working with “flags” enumeration ### Formatting range operator expressions -Only add spaces around the `..` when all expressions are non-atomic. +Only add spaces around the `..` if any expression is non-atomic. Integers and single word identifiers are considered atomic. ```fsharp