From bf460840343c09bdca2d99376e221a7ab0a7a1c8 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 20 Sep 2023 22:14:55 +0200 Subject: [PATCH] Update title page of documentation The install instructions were incomplete, and it seems pointless to mention Julia versions before 1.0. --- docs/src/index.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/src/index.md b/docs/src/index.md index d7857f0..d87cd2a 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -4,12 +4,10 @@ This package provides functions for computing prime numbers in Julia. ## Installation -The package is available for Julia versions 0.4 and up, but if you are -not using Julia version 0.7 or higher, please read the documentation for the -appropriate realease. +This release is available for Julia versions 1.6 and up. To install it, run ```julia -Pkg.add("Primes") +using Pkg ; Pkg.add("Primes") ``` from the Julia REPL.