Skip to content

Commit

Permalink
Fixed minor typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Sep 19, 2015
1 parent 4e0b7f0 commit 29c5004
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/template.h
Expand Up @@ -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;
Expand Down Expand Up @@ -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);

Expand All @@ -606,7 +605,6 @@ class TemplateEngine
/** Returns the output extension, set via setOutputExtension() */
QCString outputExtension() const;


class Private;
Private *p;
};
Expand Down

0 comments on commit 29c5004

Please sign in to comment.