Fix typos

Mostly found with codespell and during code review.
This commit is contained in:
Tobias Stoeckmann
2022-03-06 16:07:36 +01:00
parent a4389f4f30
commit 543a8eb5f9
7 changed files with 9 additions and 9 deletions

View File

@@ -70,7 +70,7 @@ Issues
Using heaptrack, and analyzing the histogram, only shows ~2.6MB
```
heaptrack ./json_parse -n canada.json
heaptrack --analyze heaptrack*gz -H histgram.out
heaptrack --analyze heaptrack*gz -H histogram.out
awk ' { s=$1; count=$2; ru=(int((s+ 15) / 16)) * 16; wasted = ((ru-s)*count); print s, count, ru-s, wasted; total=total+wasted} END { print "Total: ", total }' histogram.out
```