markdown error
Comment From: pivotal-cla
@ritzykey Please sign the Contributor License Agreement!
Click here to manually synchronize the status of this Pull Request.
See the FAQ for frequently asked questions.
Comment From: snicoll
@ritzykey what do you mean by "markdown error"? As far as I understand it, the purpose of /**/ is to replace irrelevant body with ...
Comment From: ritzykey
Comment From: snicoll
@ritzykey what browser and what link is that? This is what I have on Firefox for https://docs.spring.io/spring-boot/reference/web/reactive.html#web.reactive.webflux
Comment From: ritzykey
@snicoll chrome browser. The link is https://docs.spring.io/spring-boot/reference/web/servlet.html
Comment From: wilkinsona
Thanks, @ritzykey. The code that you have changed is for https://docs.spring.io/spring-boot/reference/web/reactive.html where the problem does not occur. The code for https://docs.spring.io/spring-boot/reference/web/servlet.html is
https://github.com/spring-projects/spring-boot/blob/06c008832254b955b2c7318abe4678b7160700c6/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/web/servlet/springmvc/MyUserHandler.java#L24-L39
Would you like to update this class instead? The fix is to remove the newlines between /**/ and the return statement so that everything's on one line as it is in the reactive variant:
https://github.com/spring-projects/spring-boot/blob/06c008832254b955b2c7318abe4678b7160700c6/spring-boot-project/spring-boot-docs/src/main/java/org/springframework/boot/docs/web/reactive/webflux/MyUserHandler.java#L26-L38
Comment From: snicoll
superseded by #41948