Skip to content

Commit

Permalink
Fix JSHint warning about missing local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegal committed Feb 6, 2013
1 parent a677b4f commit 50a9173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/service_interface/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ AWS.QueryParamSerializer = inherit({
var suffix = '.' + (n + 1);
if (rules.f) {
if (memberRules.n) {
parts = name.split('.');
var parts = name.split('.');
parts.pop();
parts.push(memberRules.n);
name = parts.join('.');
Expand Down

0 comments on commit 50a9173

Please sign in to comment.