Skip to content

Commit

Permalink
Merge pull request #294 from nathanbwright/fix_typos
Browse files Browse the repository at this point in the history
Fix some typos
  • Loading branch information
pkuczynski committed Oct 25, 2016
2 parents db7b56a + 9db6e9e commit ffeaa66
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/development/github.haml
Expand Up @@ -16,7 +16,7 @@ title: RVM on GitHub
%h2 RVM Source Repository

%p
RVM's source code repository is hosted and publically visible on
RVM's source code repository is hosted and publicly visible on
%a{:href => "https://github.com/rvm/rvm"}
GitHub
\- The cloneable repository url is
Expand Down
2 changes: 1 addition & 1 deletion content/rubies/removing.haml
Expand Up @@ -61,7 +61,7 @@ title: "'rvm remove' - Removing RVM instaled Rubies"
use rvm remove.

%p
You can uninstall one or many rubies. If you're using many, please ensure you seperate
You can uninstall one or many rubies. If you're using many, please ensure you separate
the ruby string with a comma, e.g.:

%pre.code
Expand Down
4 changes: 2 additions & 2 deletions content/rvm/basics.md
Expand Up @@ -7,7 +7,7 @@ The Basics of RVM

Wondering why you should [use RVM?](/rvm/) For a start, not only does RVM make installing multiple ruby interpreters / runtimes easy and consistent, it provides features such as gemsets that aren't typically supported out of the box on most ruby installs.

RVM also lets you use different rubies in a manner that wont mess with your existing ruby install (unless you tell it to) as well as letting you run multiple different rubies in seperate terminals concurrently!
RVM also lets you use different rubies in a manner that won't mess with your existing ruby install (unless you tell it to) as well as letting you run multiple different rubies in separate terminals concurrently!

### Getting started

Expand Down Expand Up @@ -75,7 +75,7 @@ contain numbers. This also applies when setting a default Ruby. Below is an exam
# MRI Ruby 2.1.1, and sets it as default.
$ rvm --default use 2.1.1

**NOTE:** If you use *just* the Major.Minor version numbers, RVM checks for, and uses, what is the most current patchlevel in its $rvm_path/config/db for that Major.Minor version. For example, if you only have 2.0.0-p451 installed, and 2.0.0-p481 is the lastest, RVM will attempt to download, install, and set 2.0.0-p481 as your default 2.0.0 for you. This behaviour may, or may not, be what you want. If its not, then be sure to include the patch level when you specify which Ruby RVM should use when setting a default. RVM updates the known list ($rvm_path/config/db and $rvm_path/config/known) everytime you update RVM, so the 'current' version of a Major.Minor (e.g. 2.1.2 at the time of writing) can change on you. RVM does not go by what you have installed for this reason. It goes by what is maintained in those two files.
**NOTE:** If you use *just* the Major.Minor version numbers, RVM checks for, and uses, what is the most current patchlevel in its $rvm_path/config/db for that Major.Minor version. For example, if you only have 2.0.0-p451 installed, and 2.0.0-p481 is the latest, RVM will attempt to download, install, and set 2.0.0-p481 as your default 2.0.0 for you. This behaviour may, or may not, be what you want. If its not, then be sure to include the patch level when you specify which Ruby RVM should use when setting a default. RVM updates the known list ($rvm_path/config/db and $rvm_path/config/known) every time you update RVM, so the 'current' version of a Major.Minor (e.g. 2.1.2 at the time of writing) can change on you. RVM does not go by what you have installed for this reason. It goes by what is maintained in those two files.

**NOTE:** Ruby switched to a Semantic Versioning scheme as of Ruby 2.1.1, which might affect your use of rvm to manage it. [Ruby Semantic Versioning](https://www.ruby-lang.org/en/news/2013/12/21/semantic-versioning-after-2-1-0/)

Expand Down
6 changes: 3 additions & 3 deletions content/support/faq.md
Expand Up @@ -2,7 +2,7 @@

##I have found a bug in RVM. How do I submit an issue or a patch to get this fixed?

To report bugs against RVM, please go to https://github.com/rvm/rvm/issues/ and open an Issue there. **READ ALL EXISTING REPORTS!** Sometimes the problem is already under investigation or has already been solved. Opening a new one for the same issue is a waste of time and resources and may cause your report to be summarily closed. Please use https://gist.github.com to store and file supplimentary evidence related to the bug report. Include the returned https (not git) URL in your report. Please provide
To report bugs against RVM, please go to https://github.com/rvm/rvm/issues/ and open an Issue there. **READ ALL EXISTING REPORTS!** Sometimes the problem is already under investigation or has already been solved. Opening a new one for the same issue is a waste of time and resources and may cause your report to be summarily closed. Please use https://gist.github.com to store and file supplementary evidence related to the bug report. Include the returned https (not git) URL in your report. Please provide

A. The output from `rvm info`
B. If you are using gemsets, the output from `gem list -dl`
Expand Down Expand Up @@ -89,7 +89,7 @@ RVM compiles to your current running kernel's architecture. This means that if y

Place a .ruby-version (or .rvmrc if you need scripting) file in the project directory with the version of Ruby to use for development.

The .ruby-version file has a higher precendence then the Gemfile but not the .rvmrc file and if you are on Heroku it will be ignored.
The .ruby-version file has a higher precedence then the Gemfile but not the .rvmrc file and if you are on Heroku it will be ignored.

The .ruby-version file can contain a specific ruby version, or be left empty in order to just use the currently selected ruby version.

Expand All @@ -100,6 +100,6 @@ Please note that if you want to install for root only, using a per-user install,
echo 'export rvm_prefix="$HOME"' > /root/.rvmrc
echo 'export rvm_path="$HOME/.rvm"' >> /root/.rvmrc

to override the checking done that assumes that if root is executing the install it must be a Multi-User installation type, and that RVM must go into /usr/local/rvm. This also negates the need to use sudo, as the combination of all these factors effeccively turns it into a Per-User installation type specifically for the root user only.
to override the checking done that assumes that if root is executing the install it must be a Multi-User installation type, and that RVM must go into /usr/local/rvm. This also negates the need to use sudo, as the combination of all these factors effectively turns it into a Per-User installation type specifically for the root user only.

**Please note that this is *not* a typical, or generally supported installation type.**

0 comments on commit ffeaa66

Please sign in to comment.