]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderable.h
Improve interface documentation a bit
[libs/gl.git] / source / renderable.h
index eae75cce642768f9988adcd853f27d253a695c18..9a534e9038579f37256c2722f6681235dc062eea 100644 (file)
@@ -50,12 +50,12 @@ public:
        /** Called when a complete frame has been rendered. */
        virtual void finish_frame() const { }
 
-       /** Renders the renderable without a renderer.  This can be convenient in
+       /** Renders the Renderable without a renderer.  This can be convenient in
        some simple cases, but most renderables don't need to implement this
        method. */
        virtual void render(const Tag & = Tag()) const;
 
-       /** Renders the renderable.  Implementors should take care to return the
+       /** Renders the Renderable.  Implementors should take care to return the
        renderer to the state it was in, for example by using Renderer::Push. */
        virtual void render(Renderer &, const Tag & = Tag()) const = 0;
 };