fix in doc: incomplete output (#15222) [ci skip]

This commit is contained in:
Jon
2020-08-24 14:33:51 +08:00
committed by GitHub
parent 07d82b5cc4
commit 8321617a78

View File

@@ -131,7 +131,7 @@
## let myString = "abracadabra"
## let letterFrequencies = toCountTable(myString)
## echo letterFrequencies
## # 'a': 5, 'b': 2, 'c': 1, 'd': 1, 'r': 2}
## # output: {'a': 5, 'b': 2, 'c': 1, 'd': 1, 'r': 2}
##
## The same could have been achieved by manually iterating over a container
## and increasing each key's value with `inc proc