diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..29c3654 --- /dev/null +++ b/.hgignore @@ -0,0 +1,2 @@ +.*\.pyc$ +build diff --git a/joy/library.py b/joy/library.py index d022516..49b6699 100644 --- a/joy/library.py +++ b/joy/library.py @@ -34,7 +34,7 @@ _dictionary = {} def inscribe(function): - '''A decorator to inscribe functions in to the default dictionary.''' + '''A decorator to inscribe functions into the default dictionary.''' _dictionary[function.name] = function return function