Browse Source

bugfix: fix typo's in obj-doxygen documentation.

Signed-off-by: Kim Kulling <[email protected]>
Kim Kulling 12 years ago
parent
commit
e3a5480811
1 changed files with 3 additions and 3 deletions
  1. 3 3
      code/ObjFileImporter.h

+ 3 - 3
code/ObjFileImporter.h

@@ -77,7 +77,7 @@ public:
 
 private:
 
-	//! \brief	Appends the supported extention.
+	//! \brief	Appends the supported extension.
 	const aiImporterDesc* GetInfo () const;
 
 	//!	\brief	File import implementation.
@@ -104,7 +104,7 @@ private:
 	//!	\brief	Material creation.
 	void createMaterials(const ObjFile::Model* pModel, aiScene* pScene);
 
-	//!	\brief	Appends a child node to a parentnode and updates the datastructures.
+	//!	\brief	Appends a child node to a parent node and updates the data structures.
 	void appendChildToParentNode(aiNode *pParent, aiNode *pChild);
 
 private:
@@ -112,7 +112,7 @@ private:
 	std::vector<char> m_Buffer;
 	//!	Pointer to root object instance
 	ObjFile::Object *m_pRootObject;
-	//!	Absolute pathname of model in filesystem
+	//!	Absolute pathname of model in file system
 	std::string m_strAbsPath;
 };