Skip to content

Commit

Permalink
Use named parameter for ctx. (#3003)
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf authored Nov 27, 2023
1 parent 26823a8 commit 7849a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Fantomas.Core/Context.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ val sepSpaceOrIndentAndNlnIfExpressionExceedsPageWidth: expr: (Context -> Contex
val sepSpaceOrDoubleIndentAndNlnIfExpressionExceedsPageWidth: expr: (Context -> Context) -> ctx: Context -> Context

val sepSpaceOrIndentAndNlnIfExpressionExceedsPageWidthUnlessStroustrup:
f: (Expr -> Context -> Context) -> expr: Expr -> (Context -> Context)
f: (Expr -> Context -> Context) -> expr: Expr -> ctx: Context -> Context

val sepSpaceOrIndentAndNlnIfTypeExceedsPageWidthUnlessStroustrup:
f: (Type -> Context -> Context) -> t: Type -> (Context -> Context)
f: (Type -> Context -> Context) -> t: Type -> ctx: Context -> Context

val isStroustrupStyleExpr: config: FormatConfig -> e: Expr -> bool

Expand Down

0 comments on commit 7849a18

Please sign in to comment.