This commit is contained in:
Alex Mykyta
2023-03-25 22:59:23 -07:00
parent 8b9dfe5ebe
commit 2d76f6d575
3 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ class xBufferTrigger(UDPDefinition):
# Trigger can reference a vector, but only if it is a single-bit
if value.width != 1:
self.msg.error(
"%s '%s' references %s '%s' but it's width is not 1"
"%s '%s' references %s '%s' but its width is not 1"
% (
type(node.inst).__name__.lower(), node.inst_name,
type(value.inst).__name__.lower(), value.inst_name
@@ -42,7 +42,7 @@ class xBufferTrigger(UDPDefinition):
# Trigger can reference a property, but only if it is a single-bit
if value.width != 1:
self.msg.error(
"%s '%s' references property '%s->%s' but it's width is not 1"
"%s '%s' references property '%s->%s' but its width is not 1"
% (
type(node.inst).__name__.lower(), node.inst_name,
value.node.inst_name, value.name,