From e4d25714b1e7a029f0826f7dc8cd041dd9df1143 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 25 Feb 2014 08:08:34 +0200 Subject: Fix incorrect file: URI in documentation --- doc/cxx/tree/guide/index.xhtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/cxx') 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<people_t> p (people ("people.xml", 0, props)); -- cgit v1.1