@@ -231,7 +231,7 @@ class Node extends EventDispatcher {
231231
232232 /**
233233 * By default this method returns the value of the {@link Node#global} flag. This method
234- * can be overwritten in dervied classes if an analytical way is required to determine the
234+ * can be overwritten in derived classes if an analytical way is required to determine the
235235 * global status.
236236 *
237237 * @param {NodeBuilder } builder - The current node builder.
@@ -295,7 +295,7 @@ class Node extends EventDispatcher {
295295 /**
296296 * Returns the cache key for this node.
297297 *
298- * @param {Boolean } [force=false] - When set to `true`, a recompuatation of the cache key is forced.
298+ * @param {Boolean } [force=false] - When set to `true`, a recomputation of the cache key is forced.
299299 * @return {Number } The cache key of the node.
300300 */
301301 getCacheKey ( force = false ) {
@@ -410,7 +410,7 @@ class Node extends EventDispatcher {
410410
411411 /**
412412 * This method is used during the build process of a node and ensures
413- * equal nodes are not built multiple times but just once. For exmaple if
413+ * equal nodes are not built multiple times but just once. For example if
414414 * `attribute( 'uv' )` is used multiple times by the user, the build
415415 * process makes sure to process just the first node.
416416 *
@@ -646,7 +646,7 @@ class Node extends EventDispatcher {
646646 /**
647647 * Returns the child nodes as a JSON object.
648648 *
649- * @return {Object } The serialiezed child objects as JSON.
649+ * @return {Object } The serialized child objects as JSON.
650650 */
651651 getSerializeChildren ( ) {
652652
@@ -694,7 +694,7 @@ class Node extends EventDispatcher {
694694 }
695695
696696 /**
697- * Deerializes the node from the given JSON.
697+ * Deserializes the node from the given JSON.
698698 *
699699 * @param {Object } json - The JSON object.
700700 */
@@ -747,7 +747,7 @@ class Node extends EventDispatcher {
747747 }
748748
749749 /**
750- * Seralizes the node into the three.js JSON Object/Scene format.
750+ * Serializes the node into the three.js JSON Object/Scene format.
751751 *
752752 * @param {Object? } meta - An optional JSON object that already holds serialized data from other scene objects.
753753 * @return {Object } The serialized node.
0 commit comments