diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-04 21:08:13 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-03-04 21:08:13 +0100 |
commit | 6227adfe37b1980c068fea89a47794974ae64dd9 (patch) | |
tree | c344ac807ff2bcd204e77b4bf1c7420b4bf5063a /src/plugins/xml/XmlOutput.cpp | |
parent | c0103d1ca8fa787c213adfcc10e001028583d20a (diff) |
Fix typo
Diffstat (limited to 'src/plugins/xml/XmlOutput.cpp')
-rw-r--r-- | src/plugins/xml/XmlOutput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/xml/XmlOutput.cpp b/src/plugins/xml/XmlOutput.cpp index ffdecab..bf5897b 100644 --- a/src/plugins/xml/XmlOutput.cpp +++ b/src/plugins/xml/XmlOutput.cpp @@ -52,7 +52,7 @@ void XmlTransformer::writeXml(Handle<Document> doc, std::ostream &out, // the outermost tag is the document itself. Rooted<Element> document{new Element{mgr, {nullptr}, "document"}}; // write imports for all referenced ontologies. - for (auto d : doc->getOntologys()) { + for (auto d : doc->getOntologies()) { Rooted<Element> import = createImportElement(document, d, resourceManager, "ontology"); if (import != nullptr) { |