Skip to content

Commit

Permalink
Fix a bikeshed warning about used-once <var>s.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasskin committed Oct 14, 2015
1 parent 1c491ed commit fcc8bd0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
3 changes: 2 additions & 1 deletion index.bs
Expand Up @@ -1692,7 +1692,8 @@ spec: html
</p>

<p class="note">
For two Javascript objects representing Services, Characteristics, or Descriptors,
For two Javascript objects <var>x</var> and <var>y</var>
representing Services, Characteristics, or Descriptors,
<code><var>x</var> === <var>y</var></code> returns
whether the objects represent the <a>same attribute</a>,
because of how the <a>query the Bluetooth cache</a> algorithm
Expand Down
17 changes: 8 additions & 9 deletions index.html
Expand Up @@ -84,7 +84,7 @@
}

/** Section divider ***********************************************************/
/* &lt;hr> used to separate TMI into the second half of a section */
/* <hr> used to separate TMI into the second half of a section */
hr:not([title]) {
font-size: 1.5em;
text-align: center;
Expand All @@ -96,7 +96,7 @@
hr:not([title])::before {
content: "\1F411\2003\2003\1F411\2003\2003\1F411";
}
/* note: &lt;hr> with title separates document header from contents */
/* note: <hr> with title separates document header from contents */

/******************************************************************************/
/* Paragraphs and Lists */
Expand Down Expand Up @@ -136,7 +136,7 @@
margin-left: 0;
}

/* Style for switch/case &lt;dl>s */
/* Style for switch/case <dl>s */
dl.switch > dd > ol.only {
margin-left: 0;
}
Expand Down Expand Up @@ -299,7 +299,7 @@
/* Don't wrap property and descriptor names */
white-space: nowrap;
}
.type { /* CSS value &lt;type> */
.type { /* CSS value <type> */
font-style: italic;
}
pre .property::before, pre .property::after {
Expand Down Expand Up @@ -343,7 +343,7 @@
}

[data-link-type=element] { font-family: monospace; }
[data-link-type=element]::before { content: "&lt;" }
[data-link-type=element]::before { content: "<" }
[data-link-type=element]::after { content: ">" }

[data-link-type=biblio] {
Expand Down Expand Up @@ -434,7 +434,6 @@

img {
border-style: none;
color: white;
}

figure, div.figure, div.sidefigure {
Expand Down Expand Up @@ -743,7 +742,7 @@

/** Data tables (and properly marked-up proptables) ***************************/
/*
&lt;table class="data"> highlights structural relationships in a table
<table class="data"> highlights structural relationships in a table
when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute)

Use class="complex data" for particularly complicated tables --
Expand Down Expand Up @@ -1066,7 +1065,7 @@
<div class="head">
<div data-fill-with="logo"></div>
<h1 class="p-name no-ref" id="title">Web Bluetooth</h1>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Draft Community Group Report, <time class="dt-updated" datetime="2015-09-25">25 September 2015</time></span></h2>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Draft Community Group Report, <time class="dt-updated" datetime="2015-10-13">13 October 2015</time></span></h2>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down Expand Up @@ -2150,7 +2149,7 @@ <h4 class="heading settled" data-level="5.1.3" id="identifying-attributes"><span
</ul>
<p class="note" role="note"> This definition is loose because platform APIs expose their own notion of identity
without documenting whether it’s based on <a data-link-type="dfn" href="#attribute-handle">Attribute Handle</a> equality. </p>
<p class="note" role="note"> For two Javascript objects representing Services, Characteristics, or Descriptors, <code><var>x</var> === <var>y</var></code> returns
<p class="note" role="note"> For two Javascript objects <var>x</var> and <var>y</var> representing Services, Characteristics, or Descriptors, <code><var>x</var> === <var>y</var></code> returns
whether the objects represent the <a data-link-type="dfn" href="#same-attribute">same attribute</a>,
because of how the <a data-link-type="dfn" href="#query-the-bluetooth-cache">query the Bluetooth cache</a> algorithm
creates and caches new objects. </p>
Expand Down

0 comments on commit fcc8bd0

Please sign in to comment.