Fix #3152 - Wrong character used

PR #3152 fixed the invalid alt text (so it correctly validates), but was the wrong character.
& is the correct ampersand, &#59; was a semicolon
This commit is contained in:
thebaron88
2022-05-12 09:38:26 +01:00
committed by Carol (Nichols || Goulding)
parent 7c5cf613ca
commit d82136cbdc

View File

@@ -25,7 +25,7 @@ function return value is gone. Second, note that we pass `&s1` into
`String`. These ampersands represent *references*, and they allow you to refer
to some value without taking ownership of it. Figure 4-5 depicts this concept.
<img alt="&#59;String s pointing at String s1" src="img/trpl04-05.svg" class="center" />
<img alt="&amp;String s pointing at String s1" src="img/trpl04-05.svg" class="center" />
<span class="caption">Figure 4-5: A diagram of `&String s` pointing at `String
s1`</span>