diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-07-23 11:49:39 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-07-23 11:51:26 +0200 |
commit | 2f800d5c1a305a23906783ecaa075e3d5274ef26 (patch) | |
tree | d7ba1c9ec6b0d0927aa363d939a55e33adcd3dde | |
parent | 8f37932efdbf7585c85ba1e7653e7080e17d7714 (diff) | |
download | astra-2f800d5c1a305a23906783ecaa075e3d5274ef26.tar.gz astra-2f800d5c1a305a23906783ecaa075e3d5274ef26.tar.bz2 astra-2f800d5c1a305a23906783ecaa075e3d5274ef26.tar.xz astra-2f800d5c1a305a23906783ecaa075e3d5274ef26.zip |
Fix comments
-rw-r--r-- | include/astra/AstraObjectFactory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/astra/AstraObjectFactory.h b/include/astra/AstraObjectFactory.h index efe997d..c935a7c 100644 --- a/include/astra/AstraObjectFactory.h +++ b/include/astra/AstraObjectFactory.h @@ -59,16 +59,16 @@ public: */ ~CAstraObjectFactory(); - /** Create, but don't initialize, a new projector object. + /** Create, but don't initialize, a new object. * - * @param _sType Type of the new projector. - * @return Pointer to a new, unitialized projector. + * @param _sType Type of the new object. + * @return Pointer to a new, uninitialized object. */ T* create(std::string _sType); - /** Create and initialize a new projector object. + /** Create and initialize a new object. * - * @param _cfg Configuration object to create and initialize a new projector. + * @param _cfg Configuration object to create and initialize a new object. * @return Pointer to a new, initialized projector. */ T* create(const Config& _cfg); |