From 78565d00b94973010efff1cbd600becdef394824 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Wed, 8 Mar 2017 10:45:46 +0100 Subject: [PATCH] Docs: versions plural, and update == rm lock&install --- doc/01-basic-usage.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/01-basic-usage.md b/doc/01-basic-usage.md index 33a4e4a49..9ddcfcf5f 100644 --- a/doc/01-basic-usage.md +++ b/doc/01-basic-usage.md @@ -147,8 +147,9 @@ still working even if your dependencies released many new versions since then. As mentioned above, the `composer.lock` file prevents you from automatically getting the latest versions of your dependencies. To update to the latest versions, use the [`update`](03-cli.md#update) command. This will fetch the latest matching -versions (according to your `composer.json` file) and also update the lock file -with the new version. (This is equivalent to simply deleting the `composer.lock` file.) +versions (according to your `composer.json` file) and update the lock file +with the new versions. (This is equivalent to deleting the `composer.lock` file +and running `install` again.) ```sh php composer.phar update