Fix a typo in WebView::RunScript's comment

innderHTML -> innerHTML
This commit is contained in:
Takeshi Abe
2019-01-21 16:09:45 +09:00
parent e4198c149b
commit f10939862a

View File

@@ -583,7 +583,7 @@ public:
wxString result;
if ( webview->RunScript
(
"document.getElementById('some_id').innderHTML",
"document.getElementById('some_id').innerHTML",
&result
) )
{