Skip to content

Commit 2386ab5

Browse files
committed
chore: Fix typo
1 parent c0277b2 commit 2386ab5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pytkdocs/objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def add_child(self, obj: "Object") -> None: # noqa: WPS231 (not complex)
256256
self.methods.append(obj) # type: ignore
257257
elif isinstance(obj, Attribute):
258258
# Dataclass attributes with default values will already be present in `self.attributes` as they are
259-
# resolved differently by the python interpreter. Aas they have a concrete value, they are already present
259+
# resolved differently by the python interpreter. As they have a concrete value, they are already present
260260
# in the "original" class. They should be overridden with the new "dataclass" attribute coming in here
261261
# (having the "dataclass_field" property set)
262262
new_attribute_name = obj.name

0 commit comments

Comments
 (0)