Skip to content

Commit 943ac8a

Browse files
alundiakclayreimann
authored andcommitted
typo fix in Repository.js
1 parent cda2441 commit 943ac8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Repository.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import debug from 'debug';
1414
const log = debug('github:repository');
1515

1616
/**
17-
* Respository encapsulates the functionality to create, query, and modify files.
17+
* Repository encapsulates the functionality to create, query, and modify files.
1818
*/
1919
class Repository extends Requestable {
2020
/**

lib/Requestable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class Requestable {
124124

125125
/**
126126
* if a `Date` is passed to this function it will be converted to an ISO string
127-
* @param {*} date - the object to attempt to cooerce into an ISO date string
127+
* @param {*} date - the object to attempt to coerce into an ISO date string
128128
* @return {string} - the ISO representation of `date` or whatever was passed in if it was not a date
129129
*/
130130
_dateToISO(date) {
@@ -235,7 +235,7 @@ class Requestable {
235235
* @param {string} path - the path to request
236236
* @param {Object} options - the query parameters to include
237237
* @param {Requestable.callback} [cb] - the function to receive the data. The returned data will always be an array.
238-
* @param {Object[]} results - the partial results. This argument is intended for interal use only.
238+
* @param {Object[]} results - the partial results. This argument is intended for internal use only.
239239
* @return {Promise} - a promise which will resolve when all pages have been fetched
240240
* @deprecated This will be folded into {@link Requestable#_request} in the 2.0 release.
241241
*/

0 commit comments

Comments
 (0)