* </ul>
* Note that you should (almost) always use URLs starting with
* {@literal frontend://} so that the framework can resolve the files to either
- * {@literal VAADIN/es5} or {@literal VAADIN/es6} depending on if the browser
+ * {@literal VAADIN/frontend/es5} or {@literal VAADIN/frontend/es6} depending on if the browser
* supports ES6 classes (most browers) or not (IE11 and Safari <= 9). Polymer
* elements rely on importing dependencies using relative paths
* {@literal ../../other-element/other-element.html}, which will not work if
* Example:
* <code>@HtmlImport("frontend://paper-slider/paper-slider.html")</code> on the
* class com.example.MyConnector would load the file
- * {@literal http://host.com/VAADIN/es[56]/paper-slider/paper-slider.html}
+ * {@literal http://host.com/VAADIN/frontend/es[56]/paper-slider/paper-slider.html}
* before the {@code init()} method of the client side connector is invoked.
*
* @author Vaadin Ltd