Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc using @member instead of @memberof #8891

Merged
merged 1 commit into from
Jun 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/Core/EllipsoidTangentPlane.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Object.defineProperties(EllipsoidTangentPlane.prototype, {

/**
* Gets the local Z-axis (up) of the tangent plane.
* @member EllipsoidTangentPlane.prototype
* @memberof EllipsoidTangentPlane.prototype
* @readonly
* @type {Cartesian3}
*/
Expand Down
4 changes: 2 additions & 2 deletions Source/Scene/Globe.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ Object.defineProperties(Globe.prototype, {
* A property specifying a {@link Rectangle} used to limit globe rendering to a cartographic area.
* Defaults to the maximum extent of cartographic coordinates.
*
* @member Globe.prototype
* @memberof Globe.prototype
* @type {Rectangle}
* @default Rectangle.MAX_VALUE
* @default {@link Rectangle.MAX_VALUE}
*/
cartographicLimitRectangle: {
get: function () {
Expand Down
5 changes: 3 additions & 2 deletions Source/Scene/GlobeTranslucency.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,10 @@ Object.defineProperties(GlobeTranslucency.prototype, {
* A property specifying a {@link Rectangle} used to limit translucency to a cartographic area.
* Defaults to the maximum extent of cartographic coordinates.
*
* @member GlobeTranslucency.prototype
* @memberof GlobeTranslucency.prototype
*
* @type {Rectangle}
* @default Rectangle.MAX_VALUE
* @default {@link Rectangle.MAX_VALUE}
*/
rectangle: {
get: function () {
Expand Down