summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--larch/refcountstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/larch/refcountstore.py b/larch/refcountstore.py
index 6a9411f..2eea90c 100644
--- a/larch/refcountstore.py
+++ b/larch/refcountstore.py
@@ -75,7 +75,7 @@ class RefcountStore(object):
def set_refcount(self, node_id, refcount):
'''Set the reference count for a given node.'''
- tracing.trace('setting refcoutn for %s to %s' % (node_id, refcount))
+ tracing.trace('setting refcount for %s to %s' % (node_id, refcount))
self.refcounts[node_id] = refcount
self.dirty.add(node_id)