From 6c42a305b71449d8ef26b39c1f6e0566114c8636 Mon Sep 17 00:00:00 2001
From: Folke Lemaitre <folke.lemaitre@gmail.com>
Date: Thu, 22 Jun 2023 10:23:54 +0200
Subject: [PATCH] docs: make it clear that a plugin is loaded before build.
 Fixes #888

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index f6cee6b..15a3f54 100644
--- a/README.md
+++ b/README.md
@@ -94,7 +94,7 @@ require("lazy").setup({
 | **opts**         | `table` or `fun(LazyPlugin, opts:table)`                                                                | `opts` should be a table (will be merged with parent specs), return a table (replaces parent specs) or should change a table. The table will be passed to the `Plugin.config()` function. Setting this value will imply `Plugin.config()`                                                                                               |
 | **config**       | `fun(LazyPlugin, opts:table)` or `true`                                                                 | `config` is executed when the plugin loads. The default implementation will automatically run `require(MAIN).setup(opts)`. Lazy uses several heuristics to determine the plugin's `MAIN` module automatically based on the plugin's **name**. See also `opts`. To use the default implementation without `opts` set `config` to `true`. |
 | **main**         | `string?`                                                                                               | You can specify the `main` module to use for `config()` and `opts()`, in case it can not be determined automatically. See `config()`                                                                                                                                                                                                    |
-| **build**        | `fun(LazyPlugin)` or `string` or a list of build commands                                               | `build` is executed when a plugin is installed or updated. If it's a string it will be ran as a shell command. When prefixed with `:` it is a Neovim command. You can also specify a list to executed multiple build commands                                                                                                           |
+| **build**        | `fun(LazyPlugin)` or `string` or a list of build commands                                               | `build` is executed when a plugin is installed or updated. Before running `build`, a plugin is first loaded. If it's a string it will be ran as a shell command. When prefixed with `:` it is a Neovim command. You can also specify a list to executed multiple build commands                                                         |
 | **branch**       | `string?`                                                                                               | Branch of the repository                                                                                                                                                                                                                                                                                                                |
 | **tag**          | `string?`                                                                                               | Tag of the repository                                                                                                                                                                                                                                                                                                                   |
 | **commit**       | `string?`                                                                                               | Commit of the repository                                                                                                                                                                                                                                                                                                                |