Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-scanlin-ck committed Feb 8, 2017
1 parent b86e6f9 commit 5e8d939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/networkInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class HTTPFetchNetworkInterface implements NetworkInterface {
}: ResponseAndOptions): Promise<ResponseAndOptions> {
return new Promise((resolve, reject) => {
// Declare responseObject so that afterware can mutate it.
const responseObject = { response, options }
const responseObject = { response, options };
const queue = (funcs: any[], scope: any) => {
const next = () => {
if (funcs.length > 0) {
Expand Down

0 comments on commit 5e8d939

Please sign in to comment.