Fix a range of minor typos in files in the directory "reporting_bugs" (#30848)

This commit is contained in:
giannitm
2017-03-12 16:25:25 -04:00
committed by Aditya Dalal
parent e2305fc581
commit 66d075e8b1
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<sup><sub>[Go back](a_cask_fails_to_install.md#curl-error)</sup></sub>
First, lets tackle a common problem: do you have a `.curlrc` file? Those are a frequent cause of issues of this nature. Before anything else, remove that file and try again. If it now works, do not open an issue. Incompatible `.curlrc` configurations must be fixed on your side.
First, let's tackle a common problem: do you have a `.curlrc` file? Those are a frequent cause of issues of this nature. Before anything else, remove that file and try again. If it now works, do not open an issue. Incompatible `.curlrc` configurations must be fixed on your side.
If, however, you do not have a `.curlrc` or removing it did not work, lets [continue our diagnose](curl_error_fix_vendor.md).
If, however, you do not have a `.curlrc` or removing it did not work, let's [continue our diagnosis](curl_error_fix_vendor.md).
@@ -1,6 +1,6 @@
<sup><sub>[Go back](curl_error_fix_vendor.md)</sup></sub>
Since the download started, it likely means the cask is outdated. Lets fix it:
Since the download started, it likely means the cask is outdated. Let's fix it:
1. Look around the apps website and find out what the latest version is. It will likely be expressed in the URL used to download it.
2. Take a look at the casks version (`brew cask _stanza version {{cask_name}}`) and verify it is indeed outdated.
+2 -2
View File
@@ -1,8 +1,8 @@
<sup><sub>[Go back](curl_error_fix_curlrc)</sup></sub>
Lets now see if the issue is upstream:
Let's now see if the issue is upstream:
1. Got to the vendors website (`brew cask home {{cask_name}}`).
1. Go to the vendors website (`brew cask home {{cask_name}}`).
2. Find the download link for the app and click on it.
Does it download? [Yes](curl_error_fix_outdated.md) | [No](curl_error_fix_wont_fix.md) | [There is nothing to download](curl_error_fix_no_download.md)
@@ -1,5 +1,5 @@
<sup><sub>[Go back](a_cask_fails_to_install.md#sha256-mismatch-error)</sup></sub>
First, lets see if the problem was with your download. Delete the downloaded file (its location will be pointed out right under the `Actual` shasum line) and try again.
First, let's see if the problem was with your download. Delete the downloaded file (its location will be pointed out right under the `Actual` shasum line) and try again.
If the problem persists, [the cask must be outdated](sha256_mismatch_error_fix_outdated.md).
@@ -1,8 +1,8 @@
<sup><sub>[Go back](sha256_mismatch_error_fix_icomplete.md)</sup></sub>
Lets bring the cask up to date. Itll likely need a new version, but its possible the version has remained the same (happens occasionally when the vendor updates the app in place).
Let's bring the cask up to date. Itll likely need a new version, but its possible the version has remained the same (happens occasionally when the vendor updates the app in place).
1. Got to the vendors website (`brew cask home {{cask_name}}`).
1. Go to the vendors website (`brew cask home {{cask_name}}`).
* Alternatively, if it has an `appcast`, read that (`curl "$(brew cask _stanza appcast {{cask_name}})"`).
2. Find out what the latest version is. It will likely be expressed in the URL used to download it.
3. Take a look at the casks version (`brew cask _stanza version {{cask_name}}`) and verify it is indeed outdated.
@@ -11,7 +11,7 @@ Fixing this error is typically easy, and requires only a bit of time on your par
└─ README.md
```
Now, lets look at the cask (`brew cask cat {{cask_name}}`:
Now, let's look at the cask (`brew cask cat {{cask_name}}`:
```
(…)
@@ -21,7 +21,7 @@ app 'SomeApp.app'
The cask was expecting `SomeApp.app` to be in the top directory of the archive (see how it says simply `SomeApp.app`) but the developer changed it to inside a `Files` directory. All we have to do is update that line of the cask to follow the new structure: `app 'Files/SomeApp.app'`.
Note that occasionally the apps name changes completely (from `SomeApp.app` to `OtherApp.app`, lets say). In these instances, the filename of the cask itself, as well as its token, must also change. Consult the [`token reference`](https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/token_reference.md) for complete instructions on the new name.
Note that occasionally the apps name changes completely (from `SomeApp.app` to `OtherApp.app`, let's say). In these instances, the filename of the cask itself, as well as its token, must also change. Consult the [`token reference`](https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/token_reference.md) for complete instructions on the new name.
Follow the instructions to [submit a fix](../../CONTRIBUTING.md#updating-a-cask), and make the change to the cask. If using `cask-repair`, you may give it the `--edit-cask` flag when calling it on the command-line to step right into editing it. If youre having trouble, open an issue [with this template][issue_source_not_there_and_cannot_find_it] explaining your steps so far and why youre having trouble submitting the update.