Minor typo

This commit is contained in:
PySimpleGUI 2021-01-19 13:34:28 -05:00
parent 92291b0094
commit 8a795264f6
1 changed files with 1 additions and 1 deletions

View File

@ -2758,7 +2758,7 @@ layout = [ [sg.Text('Text area', key='_TEXT_')],
[sg.Input(key='_URL_')],
[sg.Button('Chrome'), sg.Button('Exit')]]
window = sg.Window('Window Title', layuout)
window = sg.Window('Window Title', layout)
while True: # Event Loop
event, values = window.read()