Skip to content

Commit

Permalink
Merge pull request #46297 from madmiraal/add-missing-semicolons
Browse files Browse the repository at this point in the history
Add missing semicolons to webxr.eterns.js
  • Loading branch information
akien-mga authored Feb 21, 2021
2 parents fd5d1ed + 92e0a84 commit 54a1b0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/webxr/native/webxr.externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ XR.prototype.ondevicechanged;
*
* @return {!Promise<boolean>}
*/
XR.prototype.isSessionSupported = function(mode) {}
XR.prototype.isSessionSupported = function(mode) {};

/**
* @param {string} mode
* @param {XRSessionInit} options
*
* @return {!Promise<XRSession>}
*/
XR.prototype.requestSession = function(mode, options) {}
XR.prototype.requestSession = function(mode, options) {};

/**
* @constructor
Expand Down

0 comments on commit 54a1b0a

Please sign in to comment.