From c35df624e351b325ae1cc1af94f08294443f42d8 Mon Sep 17 00:00:00 2001 From: Arpit Pandey Date: Sun, 13 Oct 2019 23:11:51 +0530 Subject: [PATCH] Fix typos on code comments --- src/ui/component/fileDetails/view.jsx | 2 +- src/ui/component/splash/view.jsx | 2 +- src/ui/component/tagsSelect/view.jsx | 2 +- src/ui/component/youtubeTransferStatus/view.jsx | 2 +- src/ui/index.jsx | 4 ++-- src/ui/redux/actions/content.js | 2 +- src/ui/redux/actions/subscriptions.js | 6 +++--- src/ui/scss/component/_file-render.scss | 2 +- src/ui/scss/init/_gui.scss | 2 +- src/ui/util/detect-typing.js | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/ui/component/fileDetails/view.jsx b/src/ui/component/fileDetails/view.jsx index 8682359d5..75313dbdb 100644 --- a/src/ui/component/fileDetails/view.jsx +++ b/src/ui/component/fileDetails/view.jsx @@ -30,7 +30,7 @@ class FileDetails extends PureComponent { : fileInfo && fileInfo.download_path && formatBytes(fileInfo.written_bytes); let downloadPath = fileInfo && fileInfo.download_path ? path.normalize(fileInfo.download_path) : null; let downloadNote; - // If the path is blank, file is not avialable. Streamed files won't have any blobs saved + // If the path is blank, file is not available. Streamed files won't have any blobs saved // Create path from name so the folder opens on click. if (fileInfo && fileInfo.blobs_completed >= 1 && fileInfo.download_path === null) { downloadPath = `${fileInfo.download_directory}/${fileInfo.file_name}`; diff --git a/src/ui/component/splash/view.jsx b/src/ui/component/splash/view.jsx index 16aef786f..431ab7616 100644 --- a/src/ui/component/splash/view.jsx +++ b/src/ui/component/splash/view.jsx @@ -129,7 +129,7 @@ export default class SplashScreen extends React.PureComponent { this.setState({ launchedModal: true }, () => notifyUnlockWallet()); } } else if (status.is_running) { - // If we cleared the error timout due to a wallet being locked, make sure to start it back up + // If we cleared the error timeout due to a wallet being locked, make sure to start it back up if (!this.timeout) { this.adjustErrorTimeout(); } diff --git a/src/ui/component/tagsSelect/view.jsx b/src/ui/component/tagsSelect/view.jsx index f00d32ee3..ae2035350 100644 --- a/src/ui/component/tagsSelect/view.jsx +++ b/src/ui/component/tagsSelect/view.jsx @@ -13,7 +13,7 @@ type Props = { followedTags: Array, doToggleTagFollow?: string => void, suggestMature: boolean, - // Ovverides + // Overrides // The default component is for following tags title?: string | boolean, help?: string, diff --git a/src/ui/component/youtubeTransferStatus/view.jsx b/src/ui/component/youtubeTransferStatus/view.jsx index 3d46ab64a..8c4c59129 100644 --- a/src/ui/component/youtubeTransferStatus/view.jsx +++ b/src/ui/component/youtubeTransferStatus/view.jsx @@ -62,7 +62,7 @@ export default function YoutubeTransferStatus(props: Props) { } React.useEffect(() => { - // If a channel is transferrable, theres nothing to check + // If a channel is transferable, there's nothing to check if (hasPendingTransfers) { checkYoutubeTransfer(); diff --git a/src/ui/index.jsx b/src/ui/index.jsx index ced3a9629..12c9d0592 100644 --- a/src/ui/index.jsx +++ b/src/ui/index.jsx @@ -59,8 +59,8 @@ Lbry.setDaemonConnectionString(SDK_API_URL); // @endif // We need to override Lbryio for getting/setting the authToken -// We interect with ipcRenderer to get the auth key from a users keyring -// We keep a local variable for authToken beacuse `ipcRenderer.send` does not +// We interact with ipcRenderer to get the auth key from a users keyring +// We keep a local variable for authToken because `ipcRenderer.send` does not // contain a response, so there is no way to know when it's been set let authToken; Lbryio.setOverride( diff --git a/src/ui/redux/actions/content.js b/src/ui/redux/actions/content.js index 98f898b50..7d4eb842b 100644 --- a/src/ui/redux/actions/content.js +++ b/src/ui/redux/actions/content.js @@ -181,7 +181,7 @@ export function doPurchaseUriWrapper(uri: string, cost: number, saveFile: boolea dispatch(doUpdateLoadStatus(uri, fileInfo.outpoint)); } - // Only pass the sucess callback if we are saving the file, otherwise we don't show the download percentage + // Only pass the success callback if we are saving the file, otherwise we don't show the download percentage const successCallBack = saveFile ? onSuccess : undefined; dispatch(doPurchaseUri(uri, { costInfo: cost }, saveFile, successCallBack)); }; diff --git a/src/ui/redux/actions/subscriptions.js b/src/ui/redux/actions/subscriptions.js index f72f991c7..0a39a4777 100644 --- a/src/ui/redux/actions/subscriptions.js +++ b/src/ui/redux/actions/subscriptions.js @@ -285,7 +285,7 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool ); // calling FETCH_CHANNEL_CLAIMS_COMPLETED after not calling STARTED - // means it will delete a non-existant fetchingChannelClaims[uri] + // means it will delete a non-existent fetchingChannelClaims[uri] }); }; @@ -297,7 +297,7 @@ export const doChannelSubscribe = (subscription: Subscription) => (dispatch: Dis const subscriptionUri = subscription.uri; if (!subscriptionUri.startsWith('lbry://')) { - throw Error(`Subscription uris must inclue the "lbry://" prefix.\nTried to subscribe to ${subscriptionUri}`); + throw Error(`Subscription uris must include the "lbry://" prefix.\nTried to subscribe to ${subscriptionUri}`); } dispatch({ @@ -351,7 +351,7 @@ export const doCheckSubscriptions = () => (dispatch: Dispatch, getState: GetStat export const doCheckSubscriptionsInit = () => (dispatch: Dispatch) => { // doCheckSubscriptionsInit is called by doDaemonReady // setTimeout below is a hack to ensure redux is hydrated when subscriptions are checked - // this will be replaced with which reqiures a package upgrade + // this will be replaced with which requires a package upgrade setTimeout(() => dispatch(doFetchMySubscriptions()), 5000); const checkSubscriptionsTimer = setInterval(() => dispatch(doCheckSubscriptions()), CHECK_SUBSCRIPTIONS_INTERVAL); dispatch({ diff --git a/src/ui/scss/component/_file-render.scss b/src/ui/scss/component/_file-render.scss index 2e78c7814..d21e040f8 100644 --- a/src/ui/scss/component/_file-render.scss +++ b/src/ui/scss/component/_file-render.scss @@ -50,7 +50,7 @@ // // Custom viewers live below here -// These either have custom class names that can't be changed or have styles that need to be ovverridden +// These either have custom class names that can't be changed or have styles that need to be overridden // // Code-viewer diff --git a/src/ui/scss/init/_gui.scss b/src/ui/scss/init/_gui.scss index 4c7fce729..a7e1d811d 100644 --- a/src/ui/scss/init/_gui.scss +++ b/src/ui/scss/init/_gui.scss @@ -1,4 +1,4 @@ -// Generic html styles used accross the App +// Generic html styles used across the App // component specific styling should go in the component scss file *::selection { diff --git a/src/ui/util/detect-typing.js b/src/ui/util/detect-typing.js index f79325373..67b50ecb3 100644 --- a/src/ui/util/detect-typing.js +++ b/src/ui/util/detect-typing.js @@ -1,5 +1,5 @@ // A simple function to detect if a user is typing: -// useful when hanlding shorcut keys. +// useful when handling shortcut keys. export default function isUserTyping() { const activeElement = document.activeElement;