Skip to content

Commit 8f4bfcc

Browse files
committed
Fixes typo
1 parent 11303f8 commit 8f4bfcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reactpy/core/vdom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def __init__(
138138
def __getattr__(self, attr: str) -> Vdom:
139139
"""Supports accessing nested web module components"""
140140
if not self.import_source:
141-
msg = "Nested comopnents can only be accessed on web module components."
141+
msg = "Nested components can only be accessed on web module components."
142142
raise AttributeError(msg)
143143
return Vdom(
144144
f"{self.__name__}.{attr}",

0 commit comments

Comments
 (0)