Skip to content

Commit

Permalink
Fix typo in AMP Variable Substitutions documentation (ampproject#24818)
Browse files Browse the repository at this point in the history
<amp-pixel> was missing ">" on its opening tag.
  • Loading branch information
mattwomple authored Oct 16, 2019
1 parent 10e8da8 commit f515760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/amp-var-substitutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ Pulls a value from the provided query string parameter.
* **platform variable**: `QUERY_PARAM`
* Example: <br>
```html
<amp-pixel src="https://foo.com/pixel?bar=QUERY_PARAM(baz,biz)"</amp-pixel>
<amp-pixel src="https://foo.com/pixel?bar=QUERY_PARAM(baz,biz)"></amp-pixel>
```
If a `baz` query string parameter is provided, the corresponding value is inserted into the pixel src; otherwise, the default `biz` is used.
* **amp-analytics variable**: `${queryParam}`
Expand Down

0 comments on commit f515760

Please sign in to comment.