Fix typo in 3 files: consecutive occurrences of 'the' (#4871)

This commit is contained in:
Jorge Vallecillo 2020-10-05 13:07:20 -06:00 committed by GitHub
parent 2c7be6f0aa
commit 40b650bcd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -101,7 +101,7 @@ export function receivedPostsSince(posts: Array<Post>, channelId: string) {
}
// receivedPostsInChannel should be dispatched when receiving a list of ordered posts within a channel when the
// the adjacent posts are not known.
// adjacent posts are not known.
export function receivedPostsInChannel(posts: CombinedPostList, channelId: string, recent = false, oldest = false) {
return {
type: PostTypes.RECEIVED_POSTS_IN_CHANNEL,

View file

@ -30,7 +30,7 @@ export const createIdsSelector = reselect.createSelectorCreator(memoizeResult);
// Use this selector when you want a shallow comparison of the arguments and you don't need to memoize the result
export const createShallowSelector = reselect.createSelectorCreator(reselect.defaultMemoize, shallowEqual as any);
// isMinimumServerVersion will return true if currentVersion is equal to higher or than the
// isMinimumServerVersion will return true if currentVersion is equal to higher or than
// the provided minimum version. A non-equal major version will ignore minor and dot
// versions, and a non-equal minor version will ignore dot version.
// currentVersion is a string, e.g '4.6.0'

View file

@ -38,7 +38,7 @@ export const apiGetPostsInChannel = async (channelId) => {
/**
* Get last post in a channel.
* @param {string} channelId - The channel ID to get the the last post
* @param {string} channelId - The channel ID to get the last post
* @return {Object} returns {post} on success or {error, status} on error
*/
export const apiGetLastPostInChannel = async (channelId) => {