Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing space in exception message #498

Closed
BryceBarbara opened this issue Oct 7, 2022 · 2 comments
Closed

Missing space in exception message #498

BryceBarbara opened this issue Oct 7, 2022 · 2 comments
Assignees
Milestone

Comments

@BryceBarbara
Copy link

throw new InvalidOperationException(nameof(IncludeFunc) + "is not set");

When compiled, it looks like:

throw new InvalidOperationException("IncludeFuncis not set");

It should be:

throw new InvalidOperationException(nameof(IncludeFunc) + " is not set"); 
@jzabroski
Copy link
Collaborator

ty. PR welcome

@jzabroski
Copy link
Collaborator

@BryceBarbara I already took care of this 5 days ago, see commit history.

@jzabroski jzabroski modified the milestones: 2.4.0, 2.3.1 Jan 16, 2023
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

No branches or pull requests

2 participants