summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-09-19 14:06:08 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-09-19 14:48:47 (GMT)
commit29c500434d30cd4d9c20f6b295475ed42dba2930 (patch)
tree82188b5fca3feed00acbb276cb6ba2056a27503a
parent4e0b7f0b9a2a04d0bb5e66871da6d7ffa786836e (diff)
downloadDoxygen-29c500434d30cd4d9c20f6b295475ed42dba2930.zip
Doxygen-29c500434d30cd4d9c20f6b295475ed42dba2930.tar.gz
Doxygen-29c500434d30cd4d9c20f6b295475ed42dba2930.tar.bz2
Fixed minor typos in comments
-rw-r--r--src/template.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/template.h b/src/template.h
index 3cd89b3..7d6e2ff 100644
--- a/src/template.h
+++ b/src/template.h
@@ -518,7 +518,7 @@ class TemplateContext
*/
virtual const TemplateVariant *getRef(const QCString &name) const = 0;
- /** When files are create (i.e. by {% create ... %}) they written
+ /** When files are created (i.e. by {% create ... %}) they written
* to the directory \a dir.
*/
virtual void setOutputDirectory(const QCString &dir) = 0;
@@ -575,11 +575,10 @@ class TemplateEngine
*/
void destroyContext(TemplateContext *ctx);
- /** Creates a new template whole contents are in a file.
- * @param[in] fileName The name of the file containing the
- * template data
+ /** Creates a new template whose contents are in a file.
+ * @param[in] fileName The name of the file containing the template data
* @param[in] fromLine The line number of the statement that triggered the load
- * @return the new template, the caller will be the owner.
+ * @return the new template, the engine will keep ownership of the object.
*/
Template *loadByName(const QCString &fileName,int fromLine);
@@ -606,7 +605,6 @@ class TemplateEngine
/** Returns the output extension, set via setOutputExtension() */
QCString outputExtension() const;
-
class Private;
Private *p;
};