From: W. Trevor King Date: Thu, 8 Sep 2011 14:31:06 +0000 (-0400) Subject: Fix arbitrart -> arbitrary typo in config.Setting.__doc__. X-Git-Tag: v0.2~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c0e52a1e1a176d7c86caea1806c21f3d32a32d7b;p=h5config.git Fix arbitrart -> arbitrary typo in config.Setting.__doc__. --- diff --git a/h5config/config.py b/h5config/config.py index 6f4112f..66ba8ee 100644 --- a/h5config/config.py +++ b/h5config/config.py @@ -24,7 +24,7 @@ from . import LOG as _LOG class Setting (object): - "A named setting with arbitrart text values." + "A named setting with arbitrary text values." def __init__(self, name, help='', default=None): self.name = name self._help = help