From 92981f35998bd3fecdf3518eceb00c1853cadb8e Mon Sep 17 00:00:00 2001 From: David Williams Date: Thu, 28 Jan 2016 22:24:55 +0000 Subject: [PATCH] Minor doc update. --- documentation/tutorial1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/tutorial1.rst b/documentation/tutorial1.rst index ec89b8cd..b9413642 100644 --- a/documentation/tutorial1.rst +++ b/documentation/tutorial1.rst @@ -19,7 +19,7 @@ To get started, we need to include the following headers: #include "PolyVoxCore/SurfaceMesh.h" #include "PolyVoxCore/SimpleVolume.h" -The most fundamental construct when working with PolyVox is that of the volume. This is represented by the :polyvox:`SimpleVolume` class which stores a 3D grid of voxels. Our basic example application creates a volume with the following line of code: +The most fundamental construct when working with PolyVox is that of the volume. This is represented by the :polyvox:`RawVolume` class which stores a 3D grid of voxels. Our basic example application creates a volume with the following line of code: .. sourcecode:: c++