Skip to content

Commit 65c0683

Browse files
committed
Use NG APIs in glossary
1 parent 5d84d9a commit 65c0683

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/glossary.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Glossary
1616
A regular class whose attributes are stored in the `object.__dict__` attribute of every single instance.
1717
This is quite wasteful especially for objects with very few data attributes and the space consumption can become significant when creating large numbers of instances.
1818

19-
This is the type of class you get by default both with and without ``attrs`` (except with the next APIs `attr.define`, `attr.mutable`, and `attr.frozen`).
19+
This is the type of class you get by default both with and without ``attrs`` (except with the next APIs `attrs.define()`, `attrs.mutable()`, and `attrs.frozen()`).
2020

2121
slotted classes
2222
A class whose instances have no `object.__dict__` attribute and `define <https://docs.python.org/3/reference/datamodel.html#slots>`_ their attributes in a `object.__slots__` attribute instead.
23-
In ``attrs``, they are created by passing ``slots=True`` to ``@attr.s`` (and are on by default in `attr.define`/`attr.mutable`/`attr.frozen`).
23+
In ``attrs``, they are created by passing ``slots=True`` to ``@attr.s`` (and are on by default in `attrs.define()`/`attrs.mutable()`/`attrs.frozen()`).
2424

2525

2626
Their main advantage is that they use less memory on CPython [#pypy]_ and are slightly faster.

0 commit comments

Comments
 (0)