Browse Source

Fix code example to follow CONTRIBUTING.md style guidelines

Co-authored-by: tig <[email protected]>
copilot-swe-agent[bot] 1 month ago
parent
commit
11b2c5f05a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      TERMINOLOGY_PROPOSAL.md

+ 1 - 1
TERMINOLOGY_PROPOSAL.md

@@ -193,7 +193,7 @@ This distinction is valuable and should be preserved.
 public class RunToken { ... }
 
 // Add conversion from old to new
-public static implicit operator RunToken(RunState state) => new RunToken(state.Toplevel);
+public static implicit operator RunToken(RunState state) => new (state.Toplevel);
 
 // Mark old type obsolete
 [Obsolete("Use RunToken instead. RunState will be removed in a future version.")]