Skip to content

Commit 6e92a53

Browse files
committed
http: => https: (first pass)
1 parent 05ab951 commit 6e92a53

31 files changed

+107
-108
lines changed

content/md/articles/cookbooks/data_structures.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ Please follow the [instructions](https://github.com/clojure-doc/clojure-doc.gith
99
This cookbook covers working with core Clojure data structures.
1010

1111
This work is licensed under a <a rel="license"
12-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
12+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1313
Attribution 3.0 Unported License</a> (including images &
1414
stylesheets). The source is available [on Github](https://github.com/clojure-doc/clojure-doc.github.io).

content/md/articles/cookbooks/date_and_time.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Please follow the [instructions](https://github.com/clojure-doc/clojure-doc.gith
88
This cookbook covers working with date and time values in Clojure.
99

1010
This work is licensed under a <a rel="license"
11-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
11+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1212
Attribution 3.0 Unported License</a> (including images &
1313
stylesheets). The source is available [on Github](https://github.com/clojure-doc/clojure-doc.github.io).

content/md/articles/cookbooks/files_and_directories.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using functions in the `clojure.java.io` namespace as well as parts of
66
the JDK via interoperability.
77

88
This work is licensed under a <a rel="license"
9-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
9+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1010
Attribution 3.0 Unported License</a> (including images &
1111
stylesheets). The source is available [on
1212
Github](https://github.com/clojure-doc/clojure-doc.github.io).
@@ -39,7 +39,7 @@ or else in the repl you've loaded it:
3939
```
4040

4141
Note, you can pass urls to `slurp` as well. See also [slurp at
42-
Clojuredocs](http://clojuredocs.org/clojure_core/clojure.core/slurp).
42+
Clojuredocs](https://clojuredocs.org/clojure.core/slurp).
4343

4444

4545
### Read a file one line at a time
@@ -108,7 +108,7 @@ call a number of functions on it, including:
108108
mkdir Create this directory on disk.
109109

110110
To read about more available methods, see [the java.io.File
111-
docs](http://docs.oracle.com/javase/7/docs/api/java/io/File.html).
111+
docs](https://docs.oracle.com/javase/7/docs/api/java/io/File.html).
112112

113113

114114
### Get a list of the files and dirs in a given directory
@@ -130,5 +130,5 @@ The results of those calls are seqable.
130130

131131
## See also
132132

133-
* <https://github.com/Raynes/fs>
134-
* the I/O section of the [cheatsheet](http://clojure.org/cheatsheet)
133+
* <https://github.com/clj-commons/fs>
134+
* the I/O section of the [cheatsheet](https://clojure.org/api/cheatsheet)

content/md/articles/cookbooks/math.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ built-in functions, contrib libraries, and parts of the JDK via
66
interoperability.
77

88
This work is licensed under a <a rel="license"
9-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
9+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1010
Attribution 3.0 Unported License</a> (including images &
1111
stylesheets). The source is available [on
1212
Github](https://github.com/clojure-doc/clojure-doc.github.io).
@@ -52,13 +52,13 @@ or else in the repl you've loaded them like so:
5252

5353
For doing integer division and getting remainders (modulus), see the
5454
docs for
55-
[quot](http://clojuredocs.org/clojure_core/clojure.core/quot),
56-
[rem](http://clojuredocs.org/clojure_core/clojure.core/rem), and
57-
[mod](http://clojuredocs.org/clojure_core/clojure.core/mod).
55+
[quot](https://clojuredocs.org/clojure.core/quot),
56+
[rem](https://clojuredocs.org/clojure.core/rem), and
57+
[mod](https://clojuredocs.org/clojure.core/mod).
5858

5959
For exponents, square roots, rounding, ceiling, floor, absolute value,
6060
and greatest/least common multiples, see the [docs for
61-
math.numeric-tower](http://clojure.github.com/math.numeric-tower/).
61+
math.numeric-tower](https://clojure.github.io/math.numeric-tower/).
6262

6363
### Trigonometry
6464

@@ -73,11 +73,11 @@ Math/PI ;=> 3.14159...
7373

7474
There are many more functions available, which you can read about in
7575
the [docs for
76-
java.lang.Math](http://docs.oracle.com/javase/7/docs/api/java/lang/Math.html).
76+
java.lang.Math](https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html).
7777

7878

7979
### Combinatorics
8080

8181
For combinatoric functions (such as `combinations` and
8282
`permutations`), see the [docs for
83-
math.combinatorics](http://clojure.github.com/math.combinatorics/).
83+
math.combinatorics](https://clojure.github.io/math.combinatorics/).

content/md/articles/cookbooks/middleware.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:layout :page :page-index 4500}
33

44
This work is licensed under a <a rel="license"
5-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
5+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
66
Attribution 3.0 Unported License</a> (including images &
77
stylesheets). The source is available [on
88
Github](https://github.com/clojure-doc/clojure-doc.github.io).
@@ -98,7 +98,7 @@ client function:
9898

9999
;; Notice the :trace-redirects key shows that HTTPS was used instead
100100
;; of HTTP
101-
(https-client {:site "http://www.google.com" :options {}})
101+
(https-client {:site "https://www.google.com" :options {}})
102102
;; ⇒ {:trace-redirects ["https://www.google.com"],
103103
;; :status 200,
104104
;; :headers {...},
@@ -147,7 +147,7 @@ function looks like combining all the middleware:
147147
``` clojure
148148
(def my-client (wrap-add-date (wrap-https (wrap-no-op client))))
149149

150-
(my-client {:site "http://www.google.com"})
150+
(my-client {:site "https://www.google.com"})
151151
;; ⇒ {:date #inst "2012-11-09T12:43:39.451-00:00",
152152
;; :cookies {...},
153153
;; :trace-redirects ["https://www.google.com/"],
@@ -161,7 +161,7 @@ function looks like combining all the middleware:
161161
'...')
162162

163163
Here we can see that the `wrap-https` middleware has successfully
164-
turned the request for http://www.google.com into one for
164+
turned the request for https://www.google.com into one for
165165
https://www.google.com, additionally the `wrap-add-date` middleware
166166
has added the :date key with the date the request happened. (the
167167
`wrap-no-op` middleware did execute, but since it didn't do anything,
@@ -178,7 +178,7 @@ cleaner and clearer way by using Clojure's threading macro, `->`. The
178178
wrap-https
179179
wrap-add-date))
180180

181-
(my-client {:site "http://www.google.com"})
181+
(my-client {:site "https://www.google.com"})
182182
;; ⇒ {:date #inst "2012-11-09T12:47:32.130-00:00",
183183
;; :cookies {...},
184184
;; :trace-redirects ["https://www.google.com/"],

content/md/articles/cookbooks/strings.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ functions, standard and contrib libraries, and parts of the JDK via
66
interoperability.
77

88
This work is licensed under a <a rel="license"
9-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
9+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1010
Attribution 3.0 Unported License</a> (including images &
1111
stylesheets). The source is available [on
1212
Github](https://github.com/clojure-doc/clojure-doc.github.io).
@@ -15,7 +15,7 @@ Github](https://github.com/clojure-doc/clojure-doc.github.io).
1515
## Overview
1616

1717
* Strings are [plain Java
18-
strings](http://docs.oracle.com/javase/7/docs/api/java/lang/String.html).
18+
strings](https://docs.oracle.com/javase/7/docs/api/java/lang/String.html).
1919
You can use anything which operates on them.
2020
* Java strings are immutable, so they're convenient to use in Clojure.
2121
* You can't add metadata to Java strings.
@@ -29,7 +29,7 @@ You can use anything which operates on them.
2929

3030
* **Caveat:** Human brains and electronic computers are rather different
3131
devices. So Java strings (sequences of [UTF-16
32-
characters](http://docs.oracle.com/javase/7/docs/api/java/lang/Character.html#unicode))
32+
characters](https://docs.oracle.com/javase/7/docs/api/java/lang/Character.html#unicode))
3333
don't always map nicely to user-perceived characters. For example, a
3434
single Unicode "code point" doesn't necessarily equal a user-perceived
3535
character. (Like Korean Hangul Jamo, where user-perceived characters
@@ -40,9 +40,9 @@ code point may sometimes require 2 UTF-16 characters to encode it.
4040
## Preliminaries
4141

4242
Some examples use
43-
[clojure.string](http://clojure.github.io/clojure/clojure.string-api.html),
43+
[clojure.string](https://clojure.github.io/clojure/clojure.string-api.html),
4444
[clojure.edn](https://github.com/edn-format/edn) and
45-
[clojure.pprint](http://clojure.github.io/clojure/clojure.pprint-api.html). We'll
45+
[clojure.pprint](https://clojure.github.io/clojure/clojure.pprint-api.html). We'll
4646
assume your `ns` macro contains:
4747

4848
``` clojure
@@ -144,7 +144,7 @@ Regexes offer a boost in string-matching power. You can express ideas
144144
like repetition, alternatives, etc.
145145

146146
[Regex
147-
reference.](http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html)
147+
reference.](https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html)
148148

149149
**Groups:** Regex groups are useful, when we want to match more than
150150
one substring. (Or refer to matches later.) In the regex `#"(group-1)
@@ -212,7 +212,7 @@ Context-free grammars offer yet another boost in expressive matching
212212
power, compared to regexes. You can express ideas like nesting.
213213

214214
We'll use [Instaparse](https://github.com/Engelberg/instaparse) on
215-
[JSON's grammar](http://www.json.org/). (This example isn't seriously
215+
[JSON's grammar](https://www.json.org/). (This example isn't seriously
216216
tested nor a featureful parser. Use
217217
[data.json](https://github.com/clojure/data.json) instead.)
218218

@@ -297,7 +297,7 @@ nested functions*, and get the resulting string at the end.
297297
#### Format strings
298298

299299
Java's templating mini-language helps you build many strings
300-
conveniently. [Reference.](http://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html)
300+
conveniently. [Reference.](https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html)
301301

302302
``` clojure
303303
;; %s is most commonly used to print args. Escape %'s with %%.
@@ -327,7 +327,7 @@ language which your audience didn't sign up to learn. If you're the
327327
sort of person who likes it, try to only use it in sweetspots where it
328328
provides clarity for little complexity.
329329

330-
[Tutorial](http://www.gigamonkeys.com/book/a-few-format-recipes.html)
330+
[Tutorial](https://www.gigamonkeys.com/book/a-few-format-recipes.html)
331331
in Practical Common
332332
Lisp. [Reference](http://www.lispworks.com/documentation/HyperSpec/Body/22_c.htm)
333333
in Common Lisp's Hyperspec.

content/md/articles/ecosystem/books.md

+20-21
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide covers:
66
* Books about Clojure
77
* Books about ClojureScript
88

9-
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
9+
This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
1010
(including images & stylesheets). The source is available [on Github](https://github.com/clojure-doc/clojure-doc.github.io).
1111

1212

@@ -151,7 +151,7 @@ A book that walks you step-by-step from the basic building blocks of macros to c
151151
#### Where You Can Buy It
152152

153153
* [Pragmatic Programmers](https://pragprog.com/book/cjclojure/mastering-clojure-macros): eBook, paperback
154-
* [Paperback on Amazon](http://www.amazon.com/Mastering-Clojure-Macros-Cleaner-Smarter/dp/1941222226)
154+
* [Paperback on Amazon](https://www.amazon.com/Mastering-Clojure-Macros-Cleaner-Smarter/dp/1941222226)
155155

156156

157157

@@ -165,9 +165,8 @@ Updated for Clojure 1.6 with new content.
165165

166166
#### Where You Can Buy It
167167

168-
* [Official Site](http://joyofclojure.com/)
169-
* From [Manning](http://www.manning.com/fogus2/): eBook, paperback
170-
* [Paperback on Amazon](http://www.amazon.com/The-Joy-Clojure-Michael-Fogus/dp/1617291412)
168+
* From [Manning](https://www.manning.com/books/the-joy-of-clojure-second-edition): eBook, paperback
169+
* [Paperback on Amazon](https://www.amazon.com/Joy-Clojure-Michael-Fogus/dp/1617291412)
171170

172171

173172

@@ -185,8 +184,8 @@ Analysis, etc) are examined with examples using Clojure to process real-world da
185184
#### Where You Can Buy It
186185

187186
* [Packt Publishing](https://www.packtpub.com/big-data-and-business-intelligence/mastering-clojure-data-analysis): eBook, paperback
188-
* [Kindle version on Amazon](http://www.amazon.com/Mastering-Clojure-Data-Analysis-Rochester-ebook/dp/B00KLAJ66S)
189-
* [Paperback on Amazon](http://www.amazon.com/Mastering-Clojure-Data-Analysis-Rochester/dp/1783284137)
187+
* [Kindle version on Amazon](https://www.amazon.com/Mastering-Clojure-Data-Analysis-Rochester-ebook/dp/B00KLAJ66S)
188+
* [Paperback on Amazon](https://www.amazon.com/Mastering-Clojure-Data-Analysis-Rochester/dp/1783284137)
190189

191190

192191

@@ -202,8 +201,8 @@ how they can be applied against real-world problems using Clojure.
202201
#### Where You Can Buy It
203202

204203
* [Packt Publishing](https://www.packtpub.com/big-data-and-business-intelligence/clojure-machine-learning): eBook, paperback
205-
* [Kindle version on Amazon](http://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali-ebook/dp/B00JXLF78M)
206-
* [Paperback on Amazon](http://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali/dp/1783284358)
204+
* [Kindle version on Amazon](https://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali-ebook/dp/B00JXLF78M)
205+
* [Paperback on Amazon](https://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali/dp/1783284358)
207206

208207

209208

@@ -219,8 +218,8 @@ create web applications using an example-based approach.
219218
#### Where You Can Buy It
220219

221220
* From [Pragmatic Programmers](https://pragprog.com/book/dswdcloj/web-development-with-clojure): eBook, paperback
222-
* [Kindle version on Amazon](http://www.amazon.com/Web-Development-Clojure-Build-Bulletproof/dp/1937785645)
223-
* [Paperback on Amazon](http://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali/dp/1783284358)
221+
* [Kindle version on Amazon](https://www.amazon.com/Web-Development-Clojure-Build-Bulletproof/dp/1937785645)
222+
* [Paperback on Amazon](https://www.amazon.com/Clojure-Machine-Learning-Akhil-Wali/dp/1783284358)
224223

225224

226225

@@ -236,7 +235,7 @@ benchmarking, data structures, laziness impact, and more.
236235
#### Where You Can Buy It
237236

238237
* [Packt Publishing](http://www.packtpub.com/clojure-high-performance-programming/book): eBook, paperback
239-
* [Amazon](http://www.amazon.com/Clojure-Performance-Programming-Shantanu-Kumar-ebook/dp/B00GTE1RVW/): eBook (Kindle), paperback
238+
* [Amazon](https://www.amazon.com/Clojure-Performance-Programming-Shantanu-Kumar-ebook/dp/B00GTE1RVW/): eBook (Kindle), paperback
240239

241240

242241

@@ -298,8 +297,8 @@ An excellent introductory book. Friendly to newcomers to the language and functi
298297

299298
* [Official Site](http://www.clojurebook.com/)
300299
* From [O'Reilly](http://shop.oreilly.com/product/0636920013754.do), eBook (Kindle, ePub, PDF) or paperback.
301-
* [Kindle version on Amazon](http://www.amazon.com/Clojure-Programming-ebook/dp/B007Q4T040/ref=tmm_kin_title_0?ie=UTF8&qid=1350284538&sr=8-1)
302-
* [Paperback on Amazon](http://www.amazon.com/Clojure-Programming-Chas-Emerick/dp/1449394701/ref=sr_1_1?ie=UTF8&qid=1350284538&sr=8-1&keywords=Clojure)
300+
* [Kindle version on Amazon](https://www.amazon.com/Clojure-Programming-ebook/dp/B007Q4T040/ref=tmm_kin_title_0?ie=UTF8&qid=1350284538&sr=8-1)
301+
* [Paperback on Amazon](https://www.amazon.com/Clojure-Programming-Chas-Emerick/dp/1449394701/ref=sr_1_1?ie=UTF8&qid=1350284538&sr=8-1&keywords=Clojure)
303302

304303

305304

@@ -317,7 +316,7 @@ to `test.generative`, a Clojure testing framework similar to QuickCheck. A good
317316
#### Where You Can Buy It
318317

319318
* From [Pragmatic Programmers](http://pragprog.com/book/shcloj2/programming-clojure), eBook (Kindle, ePub, PDF) or paperback.
320-
* [Paperback on Amazon](http://www.amazon.com/Programming-Clojure-Stuart-Halloway/dp/1934356867/ref=sr_1_4?ie=UTF8&qid=1350284538&sr=8-4&keywords=Clojure)
319+
* [Paperback on Amazon](https://www.amazon.com/Programming-Clojure-Stuart-Halloway/dp/1934356867/ref=sr_1_4?ie=UTF8&qid=1350284538&sr=8-4&keywords=Clojure)
321320

322321

323322

@@ -336,7 +335,7 @@ To really appreciate it, however, you will need to have some real Clojure experi
336335

337336
* [Official Site](http://joyofclojure.com/)
338337
* From [Manning](http://www.manning.com/fogus/), eBook (Kindle, ePub, PDF) or paperback.
339-
* [Paperback on Amazon](http://www.amazon.com/The-Joy-Clojure-Thinking-Way/dp/1935182641/ref=sr_1_2?ie=UTF8&qid=1350284538&sr=8-2&keywords=Clojure)
338+
* [Paperback on Amazon](https://www.amazon.com/The-Joy-Clojure-Thinking-Way/dp/1935182641/ref=sr_1_2?ie=UTF8&qid=1350284538&sr=8-2&keywords=Clojure)
340339

341340

342341

@@ -389,7 +388,7 @@ A quick taste of Clojure for developers curious about the language. Its aimed a
389388
* [Official site](http://developerpress.com/en/clojure-made-simple-introduction-clojure)
390389
* [Book support site](http://clojuremadesimple.co.uk/)
391390
* [ganxy.com](https://ganxy.com/i/77456/john-stevenson/clojure-made-simple)
392-
* [Kindle version on Amazon](http://www.amazon.com/Clojure-Made-Simple-ebook/dp/B00BSY20HS)
391+
* [Kindle version on Amazon](https://www.amazon.com/Clojure-Made-Simple-ebook/dp/B00BSY20HS)
393392
* [Apple iBookStore](https://itunes.apple.com/us/book/clojure-made-simple/id618287958?mt=11)
394393
* [Google Play](https://play.google.com/store/books/details/John_Stevenson_Clojure_Made_Simple?id=yqfBJYhvqJcC&feature=nav_result#?t=W251bGwsMSwxLDMsImJvb2steXFmQkpZaHZxSmNDIl0.)
395394

@@ -406,8 +405,8 @@ A good introductory book.
406405
#### Where You Can Buy It
407406

408407
* From [Apress](http://www.apress.com/9781430272311), eBook or paperback.
409-
* [Kindle version on Amazon](http://www.amazon.com/Practical-Clojure-Experts-Source-ebook/dp/B003VM7G3S/ref=sr_1_12?ie=UTF8&qid=1350284538&sr=8-12&keywords=Clojure)
410-
* [Paperback on Amazon](http://www.amazon.com/Practical-Clojure-Experts-Voice-Source/dp/1430272317/ref=sr_1_6?ie=UTF8&qid=1350284538&sr=8-6&keywords=Clojure)
408+
* [Kindle version on Amazon](https://www.amazon.com/Practical-Clojure-Experts-Source-ebook/dp/B003VM7G3S/ref=sr_1_12?ie=UTF8&qid=1350284538&sr=8-12&keywords=Clojure)
409+
* [Paperback on Amazon](https://www.amazon.com/Practical-Clojure-Experts-Voice-Source/dp/1430272317/ref=sr_1_6?ie=UTF8&qid=1350284538&sr=8-6&keywords=Clojure)
411410

412411

413412

@@ -428,7 +427,7 @@ keep this in mind.
428427
#### Where You Can Buy It
429428

430429
* From [Manning](http://www.manning.com/rathore/), eBook (Kindle, ePub, PDF) or paperback.
431-
* [Paperback on Amazon](http://www.amazon.com/Clojure-Action-Amit-Rathore/dp/1935182595/ref=sr_1_3?ie=UTF8&qid=1350284538&sr=8-3&keywords=Clojure)
430+
* [Paperback on Amazon](https://www.amazon.com/Clojure-Action-Amit-Rathore/dp/1935182595/ref=sr_1_3?ie=UTF8&qid=1350284538&sr=8-3&keywords=Clojure)
432431

433432

434433
### Clojure - Grundlagen, Concurrent Programming, Java
@@ -467,7 +466,7 @@ and includes several updates.
467466
#### Where You Can Buy It
468467

469468
* From [Pragmatic Programmers](http://pragprog.com/book/shcloj/programming-clojure)
470-
* [Paperback on Amazon](http://www.amazon.com/Programming-Clojure-Pragmatic-Programmers-Halloway/dp/1934356336/ref=sr_1_7?ie=UTF8&qid=1350284538&sr=8-7&keywords=Clojure)
469+
* [Paperback on Amazon](https://www.amazon.com/Programming-Clojure-Pragmatic-Programmers-Halloway/dp/1934356336/ref=sr_1_7?ie=UTF8&qid=1350284538&sr=8-7&keywords=Clojure)
471470

472471

473472

content/md/articles/ecosystem/community.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This guide covers:
1010
* Conferences about or related to Clojure
1111
* Various Community sites about Clojure (subreddit, etc)
1212

13-
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
13+
This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>
1414
(including images & stylesheets). The source is available [on Github](https://github.com/clojure-doc/clojure-doc.github.io).
1515

1616

content/md/articles/ecosystem/data_processing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
Please follow the [instructions](https://github.com/clojure-doc/clojure-doc.github.io/tree/source#how-to-contribute) on how to contribute and start writing over [here](https://github.com/clojure-doc/clojure-doc.github.io/blob/source/content/md/articles/ecosystem/data_processing.md)
88

99
This work is licensed under a <a rel="license"
10-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
10+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
1111
Attribution 3.0 Unported License</a> (including images &
1212
stylesheets). The source is available [on Github](https://github.com/clojure-doc/clojure-doc.github.io).

content/md/articles/ecosystem/generating_documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This guide notes some commonly-used tools for generating project
55
documentation.
66

77
This work is licensed under a <a rel="license"
8-
href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
8+
href="https://creativecommons.org/licenses/by/3.0/">Creative Commons
99
Attribution 3.0 Unported License</a> (including images &
1010
stylesheets). The source is available [on
1111
Github](https://github.com/clojure-doc/clojure-doc.github.io).

0 commit comments

Comments
 (0)