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

Fix #604 Multiline Strings Forcefully Wrapping With Concatenation Causing Issues #902

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

jdyjjj
Copy link

@jdyjjj jdyjjj commented May 17, 2022

In this issue, for example, We use the code bellow

MethodSpec.methodBuilder().addComment("Test: $S", "foo\nbar");

the output in the past is that:

// Test: "foo"
    "bar"

now after my pull request, the outputs are like this:

// Test: "foo\nbar"

As you can see, I solve this issue.

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.

None yet

1 participant