summary refs log tree commit diff
path: root/UPGRADE.rst
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-08-20 15:12:44 +0100
committerMark Haines <mark.haines@matrix.org>2015-08-20 15:12:44 +0100
commitfd88ea19c0702d970af3a737a094234be1809b9e (patch)
tree2adbc1a8ae5bf36338f8cc3928800ece3bb88281 /UPGRADE.rst
parentAdd generic update instructions to UPGRADE.rst and add link to them from the ... (diff)
downloadsynapse-fd88ea19c0702d970af3a737a094234be1809b9e.tar.xz
Tweak the wording a bit
Diffstat (limited to 'UPGRADE.rst')
-rw-r--r--UPGRADE.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst
index a82dabbd3c..35a0333a7e 100644
--- a/UPGRADE.rst
+++ b/UPGRADE.rst
@@ -5,28 +5,28 @@ Before upgrading check if any special steps are required to upgrade from the
 what you currently have installed to current version of synapse. The extra
 instructions that may be required are listed later in this document.
 
-If you installed synapse in a virtualenv then active that virtualenv before
+If synapse was installed in a virtualenv then active that virtualenv before
 upgrading. If synapse is installed in a virtualenv in ``~/.synapse/`` then run:
 
 .. code:: bash
 
     source ~/.synapse/bin/activate
 
-If you installed synapse using pip then upgrade to the latest version by
+If synapse was installed using pip then upgrade to the latest version by
 running:
 
 .. code:: bash
 
     pip install --upgrade --process-dependency-links https://github.com/matrix-org/synapse/tarball/master
 
-If you installed synapse using git then upgrade to the latest version by
+If synapse was installed using git then upgrade to the latest version by
 running:
 
 .. code:: bash
 
     # Pull the latest version of the master branch.
     git pull
-    # Update the versions of synapses python dependencies.
+    # Update the versions of synapse's python dependencies.
     python synapse/python_dependencies.py | xargs -n1 pip install