jeremyevans/roda

env['rack.errors'] parsed as a link in common_logger plugin documentation

pama opened this issue · 2 comments

pama commented

https://roda.jeremyevans.net/rdoc/classes/Roda/RodaPlugins/CommonLogger.html

The issue is in this particular line:

Logs to $stderr instead of env if explicit logger not passed

It should be:

Logs to $stderr instead of env['rack.errors'] if explicit logger not passed

I ran rdoc on that particular file, and I could not reproduce the issue.

pama commented

Actually, I was wrong and I can reproduce the issue. The markup needs to be escaped: \env['rack.errors']

Thanks for the heads up! I'll fix this shortly.