Vivek Patel 8 lat temu
rodzic
commit
785755f074

+ 3 - 3
docs/manual/introduction/How-to-update-things.html

@@ -49,7 +49,7 @@ object.updateMatrix();
 					You can however update the content of buffers.
 				</p>
 				<p>
-					This means that if you know an attribute of you BufferGeometry will grow, say the number of vertices,
+					This means that if you know an attribute of your BufferGeometry will grow, say the number of vertices,
 					you must pre-allocate a buffer large enough to hold any new vertices that may be created. Of
 					course, this also means that there will be a maximum size for your BufferGeometry - there is
 					no way to create a BufferGeometry that can efficiently be extended indefinitely.
@@ -127,10 +127,10 @@ line.geometry.attributes.position.needsUpdate = true; // required after the firs
 			<h3>[page:Geometry]</h3>
 			<div>
 				<p>
-					The following flag control updating of various geometry attributes. Set flags only
+					The following flags control updating of various geometry attributes. Set flags only
 					for attributes that you need to update, updates are costly. Once buffers
 					change, these flags reset automatically back to false. You need to keep setting them to
-					true if you wanna keep updating buffers. Note that this applies only to [page:Geometry]
+					true if you want to keep updating buffers. Note that this applies only to [page:Geometry]
 					and not to [page:BufferGeometry].
 				</p>
 				<code>