Skip to content

Commit 35757f9

Browse files
committed
use HTTPS URL instead of HTTP URL when possible
1 parent 4d8d85d commit 35757f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+69
-69
lines changed

Diff for: CITATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you use `Idris` in your work we would prefer it if you would use the followin
1717
pages = {552--593},
1818
numpages = {42},
1919
doi = {10.1017/S095679681300018X},
20-
URL = {http://journals.cambridge.org/article_S095679681300018X},
20+
URL = {https://journals.cambridge.org/article_S095679681300018X},
2121
}
2222
```
2323

Diff for: CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Here are a few guidelines that we would like contributors to follow so that we c
66

77
## Getting Started
88

9-
1. Make sure you are familiar with [Git](http://git-scm.com/book).
9+
1. Make sure you are familiar with [Git](https://git-scm.com/book).
1010
1. Make sure you have a [GitHub account](https://github.com/signup/free).
11-
1. Make sure you are familiar with: [Idris](http://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf).
11+
1. Make sure you are familiar with: [Idris](https://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf).
1212
1. Make sure you can install Idris:
1313
* [Mac OS X](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-OS-X-using-Homebrew)
1414
* [Ubuntu](https://github.com/idris-lang/Idris-dev/wiki/Idris-on-Ubuntu)
@@ -72,7 +72,7 @@ We do not want you wasting your time nor duplicating somebody's work!
7272

7373
## Making Changes
7474

75-
Idris developers and hackers try to adhere to something similar to the [successful git branching model](http://nvie.com/posts/a-successful-git-branching-model/).
75+
Idris developers and hackers try to adhere to something similar to the [successful git branching model](https://nvie.com/posts/a-successful-git-branching-model/).
7676
The steps are described below.
7777

7878
### New contributors
@@ -175,8 +175,8 @@ To help increase the chance of your pull request being accepted:
175175
* Idris FAQs: [Official](https://idris.readthedocs.io/en/latest/faq/faq.html); [Unofficial](https://github.com/idris-lang/Idris-dev/wiki/Unofficial-FAQ);
176176
* [Idris Manual](https://github.com/idris-lang/Idris-dev/wiki/Manual);
177177
* [Idris Tutorial](https://idris.readthedocs.io/en/latest/tutorial/index.html);
178-
* [Idris News](http://www.idris-lang.org/news/);
179-
* [other Idris docs](http://www.idris-lang.org/documentation/).
178+
* [Idris News](https://www.idris-lang.org/news/);
179+
* [other Idris docs](https://www.idris-lang.org/documentation/).
180180
* [Using Pull Requests](https://help.github.com/articles/using-pull-requests)
181181
* [General GitHub Documentation](https://help.github.com/).
182182

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ linecount:
5656

5757
#Note: this doesn't yet link to Hackage properly
5858
doc: dist/setup-config
59-
$(CABAL) haddock --hyperlink-source --html --hoogle --html-location="http://hackage.haskell.org/packages/archive/\$$pkg/latest/doc/html" --haddock-options="--title Idris"
59+
$(CABAL) haddock --hyperlink-source --html --hoogle --html-location="https://hackage.haskell.org/packages/archive/\$$pkg/latest/doc/html" --haddock-options="--title Idris"
6060

6161
lib_doc:
6262
$(MAKE) -C libs IDRIS=../../dist/build/idris/idris doc

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
[![Appveyor build](https://ci.appveyor.com/api/projects/status/xi8yu81oy1134g7o/branch/master?svg=true)](https://ci.appveyor.com/project/idrislang/idris-dev)
55
[![Documentation Status](https://readthedocs.org/projects/idris/badge/?version=latest)](https://readthedocs.org/projects/idris/?badge=latest)
66
[![Hackage](https://img.shields.io/hackage/v/idris.svg)](https://hackage.haskell.org/package/idris)
7-
[![Stackage LTS](http://stackage.org/package/idris/badge/lts)](http://stackage.org/lts/package/idris)
8-
[![Stackage Nightly](http://stackage.org/package/idris/badge/nightly)](http://stackage.org/nightly/package/idris)
7+
[![Stackage LTS](https://stackage.org/package/idris/badge/lts)](https://stackage.org/lts/package/idris)
8+
[![Stackage Nightly](https://stackage.org/package/idris/badge/nightly)](https://stackage.org/nightly/package/idris)
99
[![IRC](https://img.shields.io/badge/IRC-%23idris-1e72ff.svg?style=flat)](https://www.irccloud.com/invite?channel=%23idris&hostname=irc.freenode.net&port=6697&ssl=1)
1010

11-
Idris (http://idris-lang.org/) is a general-purpose functional programming
11+
Idris (https://idris-lang.org/) is a general-purpose functional programming
1212
language with dependent types.
1313

1414
## Installation Guides.
@@ -28,7 +28,7 @@ Idris has support for external code generators. Supplied with the distribution
2828
is a C code generator to compile executables, and a JavaScript code generator
2929
with support for node.js and browser JavaScript.
3030

31-
More information about [code generators can be found on the wiki](http://idris.readthedocs.io/en/latest/reference/codegen.html).
31+
More information about [code generators can be found on the wiki](https://idris.readthedocs.io/en/latest/reference/codegen.html).
3232

3333
## More Information
3434

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ init:
55
66
mkdir C:\ghc
77
8-
Invoke-WebRequest "http://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-unknown-mingw32.tar.xz" -OutFile C:\ghc\ghc.tar.xz -UserAgent "Curl"
8+
Invoke-WebRequest "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-unknown-mingw32.tar.xz" -OutFile C:\ghc\ghc.tar.xz -UserAgent "Curl"
99
1010
7z x C:\ghc\ghc.tar.xz -oC:\ghc
1111

Diff for: azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
choco install 7zip.portable -y --no-progress
6969
choco install msys2 -y --no-progress --params "/InstallDir=C:/msys64/"
7070
mkdir C:\ghc
71-
Invoke-WebRequest "http://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-unknown-mingw32.tar.xz" -OutFile C:\ghc\ghc.tar.xz -UserAgent "Curl"
71+
Invoke-WebRequest "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-unknown-mingw32.tar.xz" -OutFile C:\ghc\ghc.tar.xz -UserAgent "Curl"
7272
7z x C:\ghc\ghc.tar.xz -oC:\ghc
7373
7z x C:\ghc\ghc.tar -oC:\ghc
7474
displayName: "Setting up environment"

Diff for: benchmarks/pidigits/pidigits.idr

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Data.Vect
33

44
{- Toy program that outputs the n first digits of Pi.
55
6-
Inspired from http://www.haskell.org/haskellwiki/Shootout/Pidigits.
6+
Inspired from https://www.haskell.org/haskellwiki/Shootout/Pidigits.
77
The original ns and str lazy lists have been replaced by strict functions.
88
99
Memory usage seems to be excessive. One of the branches of str is tail recursive, and

Diff for: docs/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ rights to Documentation for Idris.
77

88
More information concerning the CC0 can be found online at:
99

10-
http://creativecommons.org/publicdomain/zero/1.0/
10+
https://creativecommons.org/publicdomain/zero/1.0/

Diff for: docs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDDIR = _build
99

1010
# User-friendly check for sphinx-build
1111
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://www.sphinx-doc.org/)
1313
endif
1414

1515
# Internal variables.

Diff for: docs/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Documentation for the Idris Language.
22

33

4-
This manual has been prepared using ReStructured Text and the [Sphinx Documentation Generator](http://sphinx-doc.org) for future inclusion on [Read The Docs](http://www.readthedocs.org).
4+
This manual has been prepared using ReStructured Text and the [Sphinx Documentation Generator](https://www.sphinx-doc.org) for future inclusion on [Read The Docs](https://www.readthedocs.org).
55

66
## Dependencies
77

@@ -12,7 +12,7 @@ To build the manual the following dependencies must be met. We assume that you h
1212
Python should be installed by default on most systems.
1313
Sphinx can be installed either through your hosts package manager or using pip/easy_install.
1414

15-
*Note* [ReadTheDocs](http://www.readthedocs.org) works with Sphinx
15+
*Note* [ReadTheDocs](https://www.readthedocs.org) works with Sphinx
1616
`v1.2.2`. If you install a more recent version of sphinx then
1717
'incorrectly' marked up documentation may get passed the build system
1818
of readthedocs and be ignored. In the past we had several code-blocks
@@ -45,7 +45,7 @@ rights to Documentation for Idris.
4545

4646
More information concerning the CC0 can be found online at:
4747

48-
http://creativecommons.org/publicdomain/zero/1.0/
48+
https://creativecommons.org/publicdomain/zero/1.0/
4949

5050

5151
When contributing material to the manual please bear in mind that the work will be licensed as above.

Diff for: docs/effects/conclusions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ foundations are also well-studied see [5]_, [6]_, [7]_, [8]_.
5151
Programming Languages and Systems (APLAS '09), Zhenjiang Hu
5252
(Ed.). Springer-Verlag, Berlin, Heidelberg,
5353
95-110. DOI=10.1007/978-3-642-10672-9_9
54-
http://link.springer.com/chapter/10.1007%2F978-3-642-10672-9_9
54+
https://link.springer.com/chapter/10.1007%2F978-3-642-10672-9_9
5555
5656
5757
.. [4] Ohad Kammar, Sam Lindley, and Nicolas Oury. 2013. Handlers in

Diff for: docs/effects/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A tutorial on the `Effects` package in `Idris`.
2525
Idris Community* has waived all copyright and related or neighbouring
2626
rights to Documentation for Idris.
2727

28-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
28+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
2929

3030
.. toctree::
3131
:maxdepth: 1

Diff for: docs/effects/introduction.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Introduction
33
************
44

55
Pure functional languages with dependent types such as `Idris
6-
<http://www.idris-lang.org/>`_ support reasoning about programs directly
6+
<https://www.idris-lang.org/>`_ support reasoning about programs directly
77
in the type system, promising that we can *know* a program will run
88
correctly (i.e. according to the specification in its type) simply
99
because it compiles. Realistically, though, things are not so simple:

Diff for: docs/faq/faq.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Is there some documentation for the standard lib? List of functions?
3737
=====================================================================
3838

3939
API documentation for the shipped packages is listed on `the
40-
documentation page <http://www.idris-lang.org/documentation/>`_.
40+
documentation page <https://www.idris-lang.org/documentation/>`_.
4141

4242
Unfortunately, the default prelude and shipped packages for `Idris`
4343
are not necessarily complete with regards to documentation. Other
@@ -310,7 +310,7 @@ better and it will make sense to revisit this. For now, however, Idris will not
310310
be offering arbitrary Unicode symbols in operators.
311311

312312
This seems like an instance of `Wadler's
313-
Law <http://www.haskell.org/haskellwiki/Wadler%27s_Law>`__ in action.
313+
Law <https://www.haskell.org/haskellwiki/Wadler%27s_Law>`__ in action.
314314

315315
This answer is based on Edwin Brady's response in the following
316316
`pull request <https://github.com/idris-lang/Idris-dev/pull/694#issuecomment-29559291>`_.

Diff for: docs/guides/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Tutorials submitted by community members.
1212
Idris Community* has waived all copyright and related or neighboring
1313
rights to Documentation for Idris.
1414

15-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
15+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
1616

1717

1818
.. toctree::

Diff for: docs/guides/theorem-prover.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ We will be given the following prompt, in future releases the version string wil
2222
____ __ _
2323
/ _/___/ /____(_)____
2424
/ // __ / ___/ / ___/ Version 0.9.18.1
25-
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
25+
_/ // /_/ / / / (__ ) https://www.idris-lang.org/
2626
/___/\__,_/_/ /_/____/ Type :? for help
2727

2828
Idris is free software with ABSOLUTELY NO WARRANTY.

Diff for: docs/guides/type-providers-ffi.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Type Providers in Idris
33
***********************
44

55
`Type providers in Idris
6-
<http://www.davidchristiansen.dk/pubs/dependent-type-providers.pdf>`__
6+
<https://www.davidchristiansen.dk/pubs/dependent-type-providers.pdf>`__
77
are simple enough, but there are a few caveats to using them that it
88
would be worthwhile to go through the basic steps. We also go over
99
foreign functions, because these will often be used with type

Diff for: docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Documentation for the Idris Language
1313
Idris Community* has waived all copyright and related or neighboring
1414
rights to Documentation for Idris.
1515

16-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
16+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
1717

1818

1919
.. toctree::

Diff for: docs/listing/idris-prompt-helloworld.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $ idris hello.idr
22
____ __ _
33
/ _/___/ /____(_)____
44
/ // __ / ___/ / ___/ Version 1.3.2
5-
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
5+
_/ // /_/ / / / (__ ) https://www.idris-lang.org/
66
/___/\__,_/_/ /_/____/ Type :? for help
77

88
Type checking ./hello.idr

Diff for: docs/listing/idris-prompt-interp.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $ idris interp.idr
22
____ __ _
33
/ _/___/ /____(_)____
44
/ // __ / ___/ / ___/ Version 1.3.2
5-
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
5+
_/ // /_/ / / / (__ ) https://www.idris-lang.org/
66
/___/\__,_/_/ /_/____/ Type :? for help
77

88
Type checking ./interp.idr

Diff for: docs/listing/idris-prompt-start.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $ idris
22
____ __ _
33
/ _/___/ /____(_)____
44
/ // __ / ___/ / ___/ Version 1.3.2
5-
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
5+
_/ // /_/ / / / (__ ) https://www.idris-lang.org/
66
/___/\__,_/_/ /_/____/ Type :? for help
77

88
Idris>

Diff for: docs/make.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ if errorlevel 9009 (
6565
echo.may add the Sphinx directory to PATH.
6666
echo.
6767
echo.If you don't have Sphinx installed, grab it from
68-
echo.http://sphinx-doc.org/
68+
echo.https://www.sphinx-doc.org/
6969
exit /b 1
7070
)
7171

Diff for: docs/proofs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A tutorial on theorem proving in Idris.
1313
Idris Community* has waived all copyright and related or neighboring
1414
rights to Documentation for Idris.
1515

16-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
16+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
1717

1818
.. toctree::
1919
:maxdepth: 1

Diff for: docs/proofs/interactive.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ On running , two global names are created, ``plusredZ_Z`` and
129129
130130
. / _/___/ /____(_)____
131131
/ // __ / ___/ / ___/ Version 1.2.0
132-
_/ // /_/ / / / (__ ) http://www.idris-lang.org/
132+
_/ // /_/ / / / (__ ) https://www.idris-lang.org/
133133
/___/\__,_/_/ /_/____/ Type :? for help
134134
135135
Idris is free software with ABSOLUTELY NO WARRANTY.

Diff for: docs/reference/erasure.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Benchmarks
254254
==========
255255

256256
- source: https://github.com/ziman/idris-benchmarks
257-
- results: http://ziman.functor.sk/erasure-bm/
257+
- results: https://ziman.functor.sk/erasure-bm/
258258

259259
It can be clearly seen that asymptotics are improved by erasure.
260260

@@ -499,4 +499,4 @@ References
499499

500500
.. [BMM04] Edwin Brady, Conor McBride, James McKinna: `Inductive
501501
families need not store their indices
502-
<http://citeseerx.ist.psu.edu/viewdoc/summary;jsessionid=1F796FCF0F2C4C535FC70F62BE2FB821?doi=10.1.1.62.3849>`__
502+
<https://citeseerx.ist.psu.edu/viewdoc/summary;jsessionid=1F796FCF0F2C4C535FC70F62BE2FB821?doi=10.1.1.62.3849>`__

Diff for: docs/reference/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This will tell you how Idris works, for using it you should read the Idris Tutor
1414
Idris Community* has waived all copyright and related or neighboring
1515
rights to Documentation for Idris.
1616

17-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
17+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
1818

1919

2020
.. toctree::

Diff for: docs/reference/language-extensions.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Type Providers
99

1010
Idris type providers are a way to get the type system to reflect
1111
observations about the world outside of Idris. Similarly to `F# type
12-
providers <http://msdn.microsoft.com/en-us/library/vstudio/hh156509.aspx>`__,
12+
providers <https://msdn.microsoft.com/en-us/library/vstudio/hh156509.aspx>`__,
1313
they cause effectful computations to run during type checking, returning
1414
information that the type checker can use when checking the rest of the
1515
program. While F# type providers are based on code generation, Idris
@@ -32,5 +32,5 @@ to the user.
3232
Example Idris type providers can be seen at `this
3333
repository <https://github.com/david-christiansen/idris-type-providers>`__.
3434
More detailed descriptions are available in David Christiansen's `WGP
35-
'13 paper <http://dx.doi.org/10.1145/2502488.2502495>`__ and `M.Sc.
35+
'13 paper <https://dx.doi.org/10.1145/2502488.2502495>`__ and `M.Sc.
3636
thesis <http://itu.dk/people/drc/david-christiansen-thesis.pdf>`__.

Diff for: docs/reference/partial-evaluation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ of functions with arguments annotated as ``%static``.
88

99
(This is an implementation of the partial evaluator described in `this
1010
ICFP 2010
11-
paper <http://eb.host.cs.st-andrews.ac.uk/writings/icfp10.pdf>`__.
11+
paper <https://eb.host.cs.st-andrews.ac.uk/writings/icfp10.pdf>`__.
1212
Please refer to this for more precise definitions of what follows.)
1313

1414
Partial evaluation is switched off by default since Idris 1.0. It can
@@ -207,7 +207,7 @@ Specialising Interpreters
207207
A particularly useful situation where partial evaluation becomes
208208
effective is in defining an interpreter for a well-typed expression
209209
language, defined as follows (see the `Idris tutorial, section
210-
4 <http://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf>`__
210+
4 <https://eb.host.cs.st-andrews.ac.uk/writings/idris-tutorial.pdf>`__
211211
for more details on how this works):
212212

213213
::

Diff for: docs/reference/type-directed-search.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Type Directed Search ``:search``
44

55
Idris' ``:search`` command searches for terms according to their
66
approximate type signature (much like
7-
`Hoogle <http://www.haskell.org/hoogle/>`__ for Haskell). For
7+
`Hoogle <https://www.haskell.org/hoogle/>`__ for Haskell). For
88
example::
99

1010
Idris> :search e -> List e -> List e

Diff for: docs/reference/uniqueness-types.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ideally while giving up as little high level conveniences as possible.
1313

1414
They are inspired by linear types, `Uniqueness Types
1515
<https://en.wikipedia.org/wiki/Uniqueness_type>`__ in the `Clean
16-
<http://wiki.clean.cs.ru.nl/Clean>`__ programming language, and
16+
<https://wiki.clean.cs.ru.nl/Clean>`__ programming language, and
1717
ownership types and borrowed pointers in the `Rust
1818
<https://www.rust-lang.org/>`__ programming language.
1919

Diff for: docs/st/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ the `Control.ST` library in `Idris`.
1414
Idris Community* has waived all copyright and related or neighbouring
1515
rights to Documentation for Idris.
1616

17-
More information concerning the CC0 can be found online at: http://creativecommons.org/publicdomain/zero/1.0/
17+
More information concerning the CC0 can be found online at: https://creativecommons.org/publicdomain/zero/1.0/
1818

1919
.. toctree::
2020
:maxdepth: 1

Diff for: docs/st/introduction.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Overview
33
********
44

55
Pure functional languages with dependent types such as `Idris
6-
<http://www.idris-lang.org/>`_ support reasoning about programs directly
6+
<https://www.idris-lang.org/>`_ support reasoning about programs directly
77
in the type system, promising that we can *know* a program will run
88
correctly (i.e. according to the specification in its type) simply
99
because it compiles.

0 commit comments

Comments
 (0)