Skip to content

Avoid dollars in param names - #4904

Draft
xuwei-k wants to merge 1 commit into
typelevel:mainfrom
xuwei-k:dollars-param-names
Draft

xuwei-k wants to merge 1 commit into
typelevel:mainfrom
xuwei-k:dollars-param-names

Conversation

@xuwei-k

@xuwei-k xuwei-k commented Sep 10, 2026

Copy link
Copy Markdown
Contributor

Comment on lines +185 to +186
def alignCombine(fa2: F[A])(implicit @deprecatedName(Symbol("ev$1"), "2.14.0") ev1: Semigroup[A]): F[A] =
typeClassInstance.alignCombine[A](self, fa2)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if we really need this complexity in implicit parameter names – perhaps, we could simply change it to some "normal" names, e.g.:

def alignCombine(fa2: F[A])(implicit A: Semigroup[A]): F[A] =
  typeClassInstance.alignCombine[A](self, fa2)

@xuwei-k

xuwei-k commented Sep 10, 2026

Copy link
Copy Markdown
Contributor Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants