clarify first example

This commit is contained in:
Alex Grintsvayg 2018-11-08 16:11:34 -05:00
parent a5cf630072
commit 09c47b9dfd
3 changed files with 16 additions and 1 deletions

View file

@ -280,7 +280,7 @@
<h4 id="example-claim">Example Claim</h4>
<p>Here is an example stream claim:</p>
<figure>
<pre><code>{
&quot;claim_id&quot;: &quot;6e56325c5351ceda2dd0795a30e864492910ccbf&quot;,
&quot;name&quot;: &quot;lbry&quot;,
@ -299,6 +299,9 @@
}
}
</code></pre>
<figcaption>Note: the blockchain treats the <code>value</code> as an opaque byte string and does not impose any structure on it. Structure is applied and validated <a href="#metadata-validation">higher in the stack</a>. In this example, the value is shown for demonstration purposes.
</figcaption>
</figure>
<h4 id="claim-operations">Operations</h4>

View file

@ -232,6 +232,7 @@ Here is an example stream claim:
}
}
```
Figure: Note: the blockchain treats the `value` as an opaque byte string and does not impose any structure on it. Structure is applied and validated [higher in the stack](#metadata-validation). In this example, the value is shown for demonstration purposes.
#### Operations {#claim-operations}

View file

@ -185,3 +185,14 @@ table thead tr {
table tbody tr:nth-child(odd) {
background-color: rgba(0,0,0,.05);
}
figure {
margin-left: 0;
margin-right: 0;
}
figcaption {
color: #888;
font-size: 90%;
padding-left: 10px;
padding-right: 10px;
}