aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/traitlets/README8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/traitlets/README b/python/traitlets/README
index 67b73cc20d..b1c1aa907b 100644
--- a/python/traitlets/README
+++ b/python/traitlets/README
@@ -1,10 +1,10 @@
Traitlets is a pure Python library enabling:
-* the enforcement of strong typing for attributes of Python objects (typed
- attributes are called "traits")
+* the enforcement of strong typing for attributes of Python objects
+ (typed attributes are called "traits")
* notifications on changes of trait attributes
-* automatic validation and coercion of trait attributes when attempting a
- change
+* automatic validation and coercion of trait attributes when attempting
+ a change
Its implementation relies on the descriptor pattern.