Skip to content

Commit 9aa913c

Browse files
authored
add then
1 parent 6321196 commit 9aa913c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uwp/networking/background-transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Note the asynchronous method calls defined using JavaScript promises. Looking at
7676
promise = upload.startAsync().then(complete, error, progress);
7777
```
7878

79-
The async method call is followed by a statement which indicates methods, defined by the app, that are called when a result from the async method call is returned. For more information on this programming pattern, see [Asynchronous programming in JavaScript using promises](/previous-versions/windows).
79+
The async method call is followed by a `then` statement which indicates methods, defined by the app, that are called when a result from the async method call is returned. For more information on this programming pattern, see [Asynchronous programming in JavaScript using promises](/previous-versions/windows).
8080

8181
### Uploading multiple files
8282
**Identify the files and destination for the upload**

0 commit comments

Comments
 (0)