Skip to content

Commit

Permalink
Fixed typo for Choices (another place).
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Aug 24, 2021
1 parent ed341ae commit 991fe5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyVHDLModel/SyntaxModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2643,7 +2643,7 @@ def __init__(self, choices: Iterable[ConcurrentChoice], declaredItems: Iterable
self._choices = [c for c in choices]

@property
def Choises(self) -> List[ConcurrentChoice]:
def Choices(self) -> List[ConcurrentChoice]:
return self._choices

def __str__(self) -> str:
Expand Down

0 comments on commit 991fe5a

Please sign in to comment.