Skip to content

Commit

Permalink
chore: Fix doctring of NoneType (#517)
Browse files Browse the repository at this point in the history
Fixes #397
  • Loading branch information
mark-koch authored Oct 1, 2024
1 parent 5c18ef6 commit d4eb07d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guppylang/tys/ty.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def transform(self, transformer: Transformer) -> "Type":

@dataclass(frozen=True)
class NoneType(TypeBase):
"""Type of tuples."""
"""Type of `None`."""

linear: bool = field(default=False, init=False)
hugr_bound: ht.TypeBound = field(default=ht.TypeBound.Copyable, init=False)
Expand Down

0 comments on commit d4eb07d

Please sign in to comment.