Inno script - error in Xojo docs

Just want to inform there is a syntax error in the Inno script entries in the Xojo WindowsUniversalRuntime.pdf file.

This is how it is shown in the Xojo docs:

Filename: {tmp}VC_redist.x86.exe; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing 32-bit runtime..."; Flags: waituntilterminated

But running the compiled .exe installer file will give an error it does not find the VC_redist.x86.exe file.

The correct syntax is:

Filename: {tmp}\\VC_redist.x86.exe; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing 32-bit runtime..."; Flags: waituntilterminated

The \ is missing in the original docs.

It looks correct online (http://developer.xojo.com/windows-universal-runtime). I’m not sure why the PDF is incorrect, but I’ll look into it.