From c566636379aaad739929a7272c3ac04ceb1ea2db Mon Sep 17 00:00:00 2001 From: Anthony Keenan Date: Tue, 9 Oct 2018 14:30:46 +0100 Subject: [PATCH] Fix doc link for moved example files --- docs/index.adoc | 4 ++-- docs/quick-guide.adoc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.adoc b/docs/index.adoc index eb5b0cf4d..14f1ffa72 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -1296,9 +1296,9 @@ public interface IVersionProvider { Version providers declared with the `versionProvider` attribute need to have a public no-argument constructor to be instantiated, unless a <> is installed to instantiate classes. The GitHub project has a manifest file-based -https://github.com/remkop/picocli/blob/master/examples/src/main/java/picocli/examples/VersionProviderDemo2.java[example] +https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/VersionProviderDemo2.java[example] and a build-generated version properties file-based -https://github.com/remkop/picocli/blob/master/examples/src/main/java/picocli/examples/VersionProviderDemo1.java[example] version provider implementation. +https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/VersionProviderDemo1.java[example] version provider implementation. == Usage Help === Compact Example diff --git a/docs/quick-guide.adoc b/docs/quick-guide.adoc index fb0a529bf..e15cc966a 100644 --- a/docs/quick-guide.adoc +++ b/docs/quick-guide.adoc @@ -378,9 +378,9 @@ and invoke it to collect version information. The GitHub project has an -https://github.com/remkop/picocli/blob/master/examples/src/main/java/picocli/examples/VersionProviderDemo2.java[example] +https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/VersionProviderDemo2.java[example] implementation that gets the version from the manifest file and another -https://github.com/remkop/picocli/blob/master/examples/src/main/java/picocli/examples/VersionProviderDemo1.java[example] +https://github.com/remkop/picocli/blob/master/picocli-examples/src/main/java/picocli/examples/VersionProviderDemo1.java[example] that gets version information from a build-generated version properties file. == Usage Help