From 6ea81c9640afa25712c6dd2f2a39337000cf2fc4 2015-07-14 13:20:04 From: Andrew Murray Date: 2015-07-14 13:20:04 Subject: [PATCH] Fixed typo --- diff --git a/tools/gen_latex_symbols.py b/tools/gen_latex_symbols.py index c6f484c..00cd842 100644 --- a/tools/gen_latex_symbols.py +++ b/tools/gen_latex_symbols.py @@ -24,7 +24,7 @@ r = requests.get(url) # Build a list of key, value pairs -print('Building a list of (latex, unicode) key-vaule pairs...') +print('Building a list of (latex, unicode) key-value pairs...') lines = r.text.splitlines()[60:] lines = [line for line in lines if '=>' in line] lines = [line.replace('=>',':') for line in lines]