~ancarda/vcs-autodiscovery

fix meta payload attribute in README v1 APPLIED

Phil Pennock: 1
 fix meta payload attribute in README

 1 files changed, 2 insertions(+), 2 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~ancarda/vcs-autodiscovery/patches/37922/mbox | git am -3
Learn more about email & git

[PATCH] fix meta payload attribute in README Export this patch

Payload is in `content=`, not `value=`.
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 1bad3d8..1ba43b2 100644
--- a/README.md
+++ b/README.md
@@ -12,10 +12,10 @@ ## What and Why
Software can scrape `<meta>` tags in the `<head>` tag to learn how to clone or
navigate this project. These tags look like:

    <meta name="vcs" value="git">
    <meta name="vcs" content="git">

    <meta name="vcs:clone"
          value="https://vcs-autodiscovery.example/project.git">
          content="https://vcs-autodiscovery.example/project.git">

## Standard

-- 
2.39.0
Thanks a lot for this!