Skip to content

Commit 8bd3bb8

Browse files
committed
fixing typo
1 parent 2340390 commit 8bd3bb8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/hyperbase/hyperedge.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,28 @@ def not_atom(self) -> bool:
6262
@property
6363
def t(self) -> str:
6464
"""Edge type.
65-
(this porperty is a shortcut for Hyperedge.type())
65+
(this property is a shortcut for Hyperedge.type())
6666
"""
6767
return self.type()
6868

6969
@property
7070
def mt(self) -> str:
7171
"""Edge main type.
72-
(this porperty is a shortcut for Hyperedge.mtype())
72+
(this property is a shortcut for Hyperedge.mtype())
7373
"""
7474
return self.mtype()
7575

7676
@property
7777
def ct(self) -> str | None:
7878
"""Edge connector type.
79-
(this porperty is a shortcut for Hyperedge.connector_type())
79+
(this property is a shortcut for Hyperedge.connector_type())
8080
"""
8181
return self.connector_type()
8282

8383
@property
8484
def cmt(self) -> str | None:
8585
"""Edge connector main type.
86-
(this porperty is a shortcut for Hyperedge.mconnector_type())
86+
(this property is a shortcut for Hyperedge.mconnector_type())
8787
"""
8888
return self.connector_mtype()
8989

0 commit comments

Comments
 (0)