Skip to content

Commit

Permalink
Editorial: Fix typo in markup example (#1615)
Browse files Browse the repository at this point in the history
In the 5.1.4 Base Concept section the following was written: `<input[type="checkbox"]>` which appears to be a mix between writing the HTML tag and the CSS selector for a native checkbox.  

This PR removes the brackets in favor of displaying this as an HTML tag, since the example is immediately followed with the text "defined in [HTML]"
  • Loading branch information
scottaohara authored Sep 14, 2021
1 parent 95f3b73 commit 7c5efbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ <h3>Related Concepts</h3>
<section id="baseConcept">
<h3>Base Concept</h3>
<p>Informative data about <a>objects</a> that are considered prototypes for the <a>role</a>. Base concept is similar to type, but without inheritance of limitations and properties. Base concepts are designed as a substitute for inheritance for external concepts. A base concept is like a <a href="#relatedConcept">related concept</a> except that the base concept is almost identical to the role definition.</p>
<p>For example, the <rref>checkbox</rref> defined in this document has similar functionality and anticipated behavior to a <code>&lt;input[type="checkbox"]&gt;</code> defined in [[HTML]]. Therefore, a <rref>checkbox</rref> has an [[HTML]] <code>checkbox</code> as a <code>baseConcept</code>. However, if the original [[HTML]] checkbox baseConcept definition is modified, the definition of a <rref>checkbox</rref> in this document will not be affected, because there is no actual inheritance of the respective type.</p>
<p>For example, the <rref>checkbox</rref> defined in this document has similar functionality and anticipated behavior to a <code>&lt;input type="checkbox"&gt;</code> defined in [[HTML]]. Therefore, a <rref>checkbox</rref> has an [[HTML]] <code>checkbox</code> as a <code>baseConcept</code>. However, if the original [[HTML]] checkbox baseConcept definition is modified, the definition of a <rref>checkbox</rref> in this document will not be affected, because there is no actual inheritance of the respective type.</p>
</section>
</section>
<section id="Properties">
Expand Down

0 comments on commit 7c5efbe

Please sign in to comment.