Skip to content

Commit bc5e218

Browse files
committed
Fix a couple of typos.
1 parent 526ec24 commit bc5e218

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Editor/CesiumUrlTemplateRasterOverlayEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private void DrawUrlTemplateProperties()
117117

118118
EditorGUILayout.PropertyField(
119119
this._projection,
120-
new GUIContent("Projection", "The type of projection used to protect the imagery onto the globe."));
120+
new GUIContent("Projection", "The type of projection used to project the imagery onto the globe."));
121121

122122
EditorGUILayout.PropertyField(
123123
this._specifyTilingScheme,

Runtime/CesiumUrlTemplateRasterOverlay.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public string templateUrl
6363
private CesiumUrlTemplateRasterOverlayProjection _projection = CesiumUrlTemplateRasterOverlayProjection.WebMercator;
6464

6565
/// <summary>
66-
/// The type of projection used to protect the imagery onto the globe.
66+
/// The type of projection used to project the imagery onto the globe.
6767
///
6868
/// For instance, EPSG:4326 uses geographic projection and EPSG:3857 uses Web Mercator.
6969
/// </summary>
@@ -191,7 +191,7 @@ public double rectangleEast
191191
}
192192

193193
[SerializeField]
194-
private double _rectangleNorth = -90.0;
194+
private double _rectangleNorth = 90.0;
195195

196196
/// <summary>
197197
/// The north boundary of the bounding rectangle used for the quadtree tiling

0 commit comments

Comments
 (0)