Skip to content

Commit

Permalink
Fix syntax for regex replacement pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
ncousineau committed Dec 3, 2022
1 parent b9e32fa commit 8590e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/v7/v7.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class V7 extends SportApi
this.getResource '/seasons/%(year)s/%(season)s/standings/season.xml', params, callback

getGameStatistics: (params, callback) ->
this.getResource '/games/%(gameId)s/statistics.xml', params, callback
this.getResource '/games/%(gameId)s/%statistics.xml', params, callback

getPlayByPlay: (params, callback) ->
this.getResource '/games/%(gameId)s/pbp.xml', params, callback
Expand Down

0 comments on commit 8590e13

Please sign in to comment.