From 9db6e9e8abbc5d445e16951bbf222db19f1a54e3 Mon Sep 17 00:00:00 2001 From: nathanbwright Date: Tue, 25 Oct 2016 11:51:10 -0600 Subject: [PATCH] Fix some typos --- content/development/github.haml | 2 +- content/rubies/removing.haml | 2 +- content/rvm/basics.md | 4 ++-- content/support/faq.md | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/development/github.haml b/content/development/github.haml index 391109c1..0f0d3ae2 100644 --- a/content/development/github.haml +++ b/content/development/github.haml @@ -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 diff --git a/content/rubies/removing.haml b/content/rubies/removing.haml index 148e1aac..ab522839 100644 --- a/content/rubies/removing.haml +++ b/content/rubies/removing.haml @@ -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 diff --git a/content/rvm/basics.md b/content/rvm/basics.md index 50960507..7070786c 100644 --- a/content/rvm/basics.md +++ b/content/rvm/basics.md @@ -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 @@ -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/) diff --git a/content/support/faq.md b/content/support/faq.md index 7a43b895..dc55e009 100644 --- a/content/support/faq.md +++ b/content/support/faq.md @@ -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` @@ -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. @@ -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.**