diff --git a/docs/global.rst b/docs/global.rst index a26263f..51ca341 100644 --- a/docs/global.rst +++ b/docs/global.rst @@ -4,11 +4,16 @@ Global options .. autodata:: yli.config .. autoattribute:: yli.config.Config.alpha + :annotation: = 0.05 .. autoattribute:: yli.config.Config.pvalue_leading_zero + :annotation: = True .. autoattribute:: yli.config.Config.pvalue_max_dps + :annotation: = 3 .. autoattribute:: yli.config.Config.pvalue_min_dps + :annotation: = 2 .. autoattribute:: yli.config.Config.repr_is_summary + :annotation: = True diff --git a/yli/config.py b/yli/config.py index 7c282bb..7e56694 100644 --- a/yli/config.py +++ b/yli/config.py @@ -18,7 +18,7 @@ class Config: """Global configuration for the library""" def __init__(self): - # NOTE: If add any attributes here, must also change docs/global.rst + # NOTE: If change any attributes here, must also change docs/global.rst #: Display at least this many decimal places for *p* values (*int*) self.pvalue_min_dps = 2