Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Apr 7, 2016
1 parent 71fa03f commit 9d942a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Source/Scene/Cesium3DTileset.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ define([

// [head, sentinel) -> tiles that weren't selected this frame and may be replaced
// (sentinel, tail] -> tiles that were selected this frame
this._replacementList = replacementList; // Tiles with content loaded. For cache management
this._replacementList = replacementList; // Tiles with content loaded. For cache management.
this._replacementSentinel = replacementList.add();
this._trimTiles = false;

Expand Down Expand Up @@ -256,7 +256,7 @@ define([
* The unloaded {@link Cesium3DTile} is passed to the event listener.
* </p>
* <p>
* This event is immediately before the tile's content is unloaded while the frame is being
* This event is fired immediately before the tile's content is unloaded while the frame is being
* rendered so that the event listener has access to the tile's content. Do not create
* or modify Cesium entities or primitives during the event listener.
* </p>
Expand Down
4 changes: 2 additions & 2 deletions Specs/Core/DoublyLinkedListSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
defineSuite([
'Core/DoublyLinkedList'
], function(
DoublyLinkedList) {
DoublyLinkedList) {
'use strict';

it('constructs', function() {
Expand Down Expand Up @@ -103,7 +103,7 @@ defineSuite([
var list = new DoublyLinkedList();
var node = list.add(1);
var node2 = list.add(2);
var node3 = list.add(2);
var node3 = list.add(3);

list.remove(node2);

Expand Down

0 comments on commit 9d942a4

Please sign in to comment.