From 9805f479be04a1517332ff3134b378f21619b338 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Mon, 16 Apr 2018 21:21:02 -0700 Subject: [PATCH] Ignore build dir and pyc files. --- .hgignore | 2 ++ joy/library.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .hgignore 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