Skip to content

Commit 216bc9b

Browse files
committed
grammar
1 parent 5e7a7b4 commit 216bc9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sample/Archiving/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ displays all the archives created with your API Key. If there are more than five
181181
can be seen by clicking the "Older →" link. If you click on the name of an archive, your browser
182182
will start downloading the archive file. If you click the "Delete" link in the end of the row
183183
for any archive, that archive will be deleted and no longer available. Some basic information like
184-
when the archive was created, how long it is, and its status is shown. You should see the archives
185-
you created in the previous sections here.
184+
when the archive was created, how long it is, and its status is also shown. You should see the
185+
archives you created in the previous sections here.
186186

187187
We begin to see how this page is created by looking at the route handler for this URL:
188188

@@ -226,7 +226,7 @@ This view is paginated so that we don't potentially show hundreds of rows on the
226226
be difficult for the user to navigate. So this code starts by figuring out which page needs to be
227227
shown, where each page is a set of 5 archives. The `page` number is read from the request's query
228228
string parameters as a string and then parsed into an `int`. The `offset`, which represents how many
229-
archives are being skipped is always calculated as five times as pages that are less than the current
229+
archives are being skipped is always calculated as five times as many pages that are less than the current
230230
page, which is `(page - 1) * 5`. Now there is enough information to ask for a list of archives from
231231
OpenTok, which we do by calling the `listArchives()` method of the `opentok` instance. The first
232232
parameter is the offset, and the second is the count (which is always 5 in this view). If we are not

0 commit comments

Comments
 (0)