Update http to https in README.md
dblume

dblume commited on 2023-03-16 08:13:18
Showing 1 changed files, with 5 additions and 5 deletions.

... ...
@@ -6,7 +6,7 @@ It is written in Python and yet harkens back to a simpler era before Redis and R
6 6
 ## Dependencies and Guarantees
7 7
 
8 8
 kvs uses a local file for its backing store, and stores the data in the human-friendly
9
-[YAML](http://yaml.org/) format. Its ACID properties are as follows:
9
+[YAML](https://yaml.org/) format. Its ACID properties are as follows:
10 10
 
11 11
 * **Atomicity**: Either all tuples in a transaction are successfully saved or none are.
12 12
 * **Consistency**: Only valid states are saved, and saves are atomic.
... ...
@@ -16,8 +16,8 @@ kvs uses a local file for its backing store, and stores the data in the human-fr
16 16
 # Getting the project
17 17
 
18 18
 You can get a copy of this project by clicking on the
19
-[ZIP](http://git.dlma.com/kvs.git/zipball/main)
20
-or [TAR](http://git.dlma.com/kvs.git/tarball/main) buttons
19
+[ZIP](https://git.dlma.com/kvs.git/zipball/main)
20
+or [TAR](https://git.dlma.com/kvs.git/tarball/main) buttons
21 21
 near the top right of the GitList web page.
22 22
 
23 23
 If you're me, and you want to contribute to the repo, then you can clone it like so:
... ...
@@ -49,7 +49,7 @@ Here's the recipe for a cURL command to store a new value for a key:
49 49
 
50 50
     curl --data "key=value&auth={authorization}" https://{url}
51 51
 
52
-Here's [the source code for a Roku channel client of such a service](http://git.dlma.com/roku_ip_tagger.git/). 
52
+Here's [the source code for a Roku channel client of such a service](https://git.dlma.com/roku_ip_tagger.git/).
53 53
 
54 54
 # Is it any good?
55 55
 
... ...
@@ -57,4 +57,4 @@ Here's [the source code for a Roku channel client of such a service](http://git.
57 57
 
58 58
 # Licence
59 59
 
60
-This software uses the [MIT license](http://git.dlma.com/kvs.git/blob/main/LICENSE.txt).
60
+This software uses the [MIT license](https://git.dlma.com/kvs.git/blob/main/LICENSE.txt).
61 61