summaryrefslogtreecommitdiff
path: root/doc/cxx/tree/guide/index.xhtml
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-02-25 08:08:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-02-25 08:08:34 +0200
commite4d25714b1e7a029f0826f7dc8cd041dd9df1143 (patch)
treee9f174a399f1b465ab78fc6836be71d814ff5dac /doc/cxx/tree/guide/index.xhtml
parentb7a1bdbccc0bed9838750e50a64f16a7357ffcf5 (diff)
Fix incorrect file: URI in documentation
Diffstat (limited to 'doc/cxx/tree/guide/index.xhtml')
-rw-r--r--doc/cxx/tree/guide/index.xhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/cxx/tree/guide/index.xhtml b/doc/cxx/tree/guide/index.xhtml
index df54d1f..863bb57 100644
--- a/doc/cxx/tree/guide/index.xhtml
+++ b/doc/cxx/tree/guide/index.xhtml
@@ -2386,11 +2386,11 @@ if (getcwd (cwd, PATH_MAX) == 0)
xml_schema::properties props;
props.no_namespace_schema_location (
- "file:///" + std::string (cwd) + "people.xsd");
+ "file:///" + std::string (cwd) + "/people.xsd");
props.schema_location (
"http://www.w3.org/XML/1998/namespace",
- "file:///" + std::string (cwd) + "xml.xsd");
+ "file:///" + std::string (cwd) + "/xml.xsd");
auto_ptr&lt;people_t> p (people ("people.xml", 0, props));
</pre>