From c0e52a1e1a176d7c86caea1806c21f3d32a32d7b Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 8 Sep 2011 10:31:06 -0400 Subject: [PATCH] Fix arbitrart -> arbitrary typo in config.Setting.__doc__. --- h5config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2