Skip to content

Commit

Permalink
Fix syntax errors in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaskorz committed Feb 12, 2020
1 parent 53a4525 commit df0700b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/routing/walker.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ shaka.routing.Walker = class {
* shaka.routing.Node,
* shaka.routing.Payload,
* shaka.routing.Node,
* shaka.routing.Payload):shaka.routing.Node getNext
* shaka.routing.Payload):shaka.routing.Node} getNext
* Get the next node that the walker should move to. This method will be
* passed (in this order) the current node, current payload, destination
* node, and destination payload.
Expand All @@ -421,7 +421,7 @@ shaka.routing.Walker = class {
*
* @property {function(
* shaka.routing.Payload,
* !Error):!Promise.<shaka.routing.Node> handleError
* !Error):!Promise.<shaka.routing.Node>} handleError
* This is the callback for when |enterNode| fails. It is passed the current
* payload and the error. If a step is aborted, the error will be
* OPERATION_ABORTED. It should reset all external dependences, modify the
Expand Down Expand Up @@ -499,7 +499,7 @@ shaka.routing.Walker.Listeners;
* |shaka.routing.Walker.Implementation.getNext| to help determine where to
* go next.
*
* @property {shaka.routing.Payload| payload
* @property {shaka.routing.Payload} payload
* The payload that the walker should have once it arrives at |node|. This
* will be passed to the |shaka.routing.Walker.Implementation.getNext| to
* help determine where to go next.
Expand Down Expand Up @@ -530,7 +530,7 @@ shaka.routing.Walker.Route;
* |shaka.routing.Walker.Implementation.getNext| to help determine where to
* go next.
*
* @property {shaka.routing.Payload| payload
* @property {shaka.routing.Payload} payload
* The payload that the walker should have once it arrives at |node|. This
* will be passed to the |shaka.routing.Walker.Implementation.getNext| to
* help determine where to go next.
Expand Down

0 comments on commit df0700b

Please sign in to comment.