Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #11153 (new defect)

Opened 3 months ago

[DOC] Object.keys() has improperly escaped HTML entity in API docs

Reported by: danhood Assigned to: sam
Priority: low Milestone: 2.x
Component: Prototype Version: edge
Severity: minor Keywords: prototype API docs object keys
Cc:

Description

The page describing the Object.keys() method (http://prototypejs.org/api/object/keys) contains an HTML entity (the '...' character) which is improperly escaped...

Page contents (HTML):

(it relies on the <code>for&amp;#8230;in</code> loop)

Renders as:

(it relies on the for&#8230;in loop)

HTML should be:

(it relies on the <code>for&#8230;in</code> loop)