You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 28, 2019. It is now read-only.
@reedodeneal opening an issue for your original bug report here for tracking. Again, nice catch! If for some reason you're not up to submitting the fix, I'd be happy to make the change and attribute the credit to you.
Issue: strings containing scope keywords are being incorrectly matched as documentable code. See this line. Use of contains can incorrectly match strings containing scope keywords. Example:
publicstaticvoidinsertJob(Job__cjob) {
StringsomeString='for some reason this '+'string contains the word private '+'and creates a very public error.';
insertjob;
}
This would result in documentation that might look like this:
Whoops!
The use of startsWith can easily fix this.
The text was updated successfully, but these errors were encountered:
@reedodeneal opening an issue for your original bug report here for tracking. Again, nice catch! If for some reason you're not up to submitting the fix, I'd be happy to make the change and attribute the credit to you.
Issue: strings containing scope keywords are being incorrectly matched as documentable code. See this line. Use of
contains
can incorrectly match strings containing scope keywords. Example:This would result in documentation that might look like this:
Whoops!
The use of
startsWith
can easily fix this.The text was updated successfully, but these errors were encountered: