whitespace
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 5 Dec 2023 14:39:32 +0000 (14:39 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 5 Dec 2023 14:39:32 +0000 (14:39 +0000)
openpower/sv/cookbook/pospopcnt.mdwn

index eb8c722bbe72faf75f69509a9796a0a861d348b5..f8b46d378698663a7556146a0a088f248c1c338e 100644 (file)
@@ -46,12 +46,12 @@ Array popcount is just standard popcount function
 ([[!wikipedia Hamming weight]]) on an array of values, horizontally,
 however positional popcount is different (vertical)
 
-<img src="/openpower/sv/cookbook/1_popcount.svg " alt="pospopcnt" width="70%" />
+<img src="/openpower/sv/cookbook/1_popcount.svg" alt="pospopcnt" width="70%" />
 
 Positional popcount adds up the totals of each bit set to 1 in each
 bit-position, of an array of input values.
 
-<img src="/openpower/sv/cookbook/2_popcount.svg " alt="pospopcnt" width="70%" />
+<img src="/openpower/sv/cookbook/2_popcount.svg" alt="pospopcnt" width="70%" />
 
 # Visual representation of the pospopcount algorithm