Module: wine Branch: master Commit: 796aa0ae887c44d78a3437039fd03a66480dcd05 URL: https://source.winehq.org/git/wine.git/?a=commit;h=796aa0ae887c44d78a3437039... Author: David Kahurani <k.kahurani(a)gmail.com> Date: Mon Jun 20 12:55:52 2022 +0300 xmllite/writer: Fix typo in a comment. Signed-off-by: David Kahurani <k.kahurani(a)gmail.com> --- dlls/xmllite/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/xmllite/writer.c b/dlls/xmllite/writer.c index 3f5b3527f23..6f455ffcb19 100644 --- a/dlls/xmllite/writer.c +++ b/dlls/xmllite/writer.c @@ -949,7 +949,7 @@ static HRESULT WINAPI xmlwriter_WriteAttributeString(IXmlWriter *iface, LPCWSTR return S_OK; } - /* Ignore prefix is URI wasn't specified. */ + /* Ignore prefix if URI wasn't specified. */ if (is_xmlns_local && is_empty_string(uri)) { write_output_attribute(This, NULL, 0, L"xmlns", 5, value);