浏览代码

Merge pull request #18478 from Mike-Dax/patch-1

Fixed minor spelling mistake in BufferGeometry typescript type
Mr.doob 5 年之前
父节点
当前提交
16c97c7cf8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/BufferGeometry.d.ts

+ 1 - 1
src/core/BufferGeometry.d.ts

@@ -12,7 +12,7 @@ import { InterleavedBufferAttribute } from './InterleavedBufferAttribute';
 
 /**
  * This is a superefficent class for geometries because it saves all data in buffers.
- * It reduces memory costs and cpu cycles. But it is not as easy to work with because of all the nessecary buffer calculations.
+ * It reduces memory costs and cpu cycles. But it is not as easy to work with because of all the necessary buffer calculations.
  * It is mainly interesting when working with static objects.
  *
  * @see <a href="https://github.com/mrdoob/three.js/blob/master/src/core/BufferGeometry.js">src/core/BufferGeometry.js</a>