While adding following comment to one of my canister, I noticed that the auto formatting was breaking - was generating an incorrect format for my code.
/**
* Does a bucket id exists? - i.e. not a bucket for a user but is a canister id linked to any user's bucket?
*/
After debugging I noticed that the root cause was using a quote ' in the comment. i.e. if I remove the quote, format is generated correctly.
Issue
While adding following comment to one of my canister, I noticed that the auto formatting was breaking - was generating an incorrect format for my code.
After debugging I noticed that the root cause was using a quote
'
in the comment. i.e. if I remove the quote, format is generated correctly.