Skip to content

Commit 6c1f7ff

Browse files
committed
Update documentation with new URL
1 parent 5fded27 commit 6c1f7ff

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/Tutorial_Basics.org

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This tutorial will introduce you to Cakelisp's most unique feature, compile-time
66
- Experience writing C or C++ programs. If you're just learning how to program, you should learn a different language rather than Cakelisp for now.
77

88
* Setup
9-
First, [[https://github.com/makuto/cakelisp/archive/refs/heads/master.zip][download Cakelisp]]. You can also clone it through git. The URL is [[https://github.com/makuto/cakelisp]].
9+
First, [[https://macoy.me/code/macoy/cakelisp][download Cakelisp]]. You can also clone it through git via ~git clone https://macoy.me/code/macoy/cakelisp.git~. The source is hosted [[https://macoy.me/code/macoy/cakelisp][here]].
1010

1111
Unzip the ~master.zip~ file, if you downloaded it manually.
1212

@@ -662,7 +662,7 @@ It can take some time to appreciate the power that compile-time code generation
662662
- [[https://macoy.me/code/macoy/gamelib/src/branch/master/src/Introspection.cake][Introspection.cake]] generates metadata for structs to provide automatic plain-text serialization and a [[https://macoy.me/blog/programming/TypeIntrospection][plethora of other features]]
663663
- [[https://macoy.me/code/macoy/gamelib/src/branch/master/src/TaskSystem.cake][TaskSystem.cake]] allows for a much more [[https://macoy.me/blog/programming/InterfaceFriction][ergonomic interface]] to multi-threaded task systems
664664
- [[https://macoy.me/code/macoy/gamelib/src/branch/master/src/AutoTest.cake][AutoTest.cake]] does very similarly to our ~defcommand~ in order to collect and execute test functions
665-
- [[https://github.com/makuto/cakelisp/blob/master/runtime/HotReloadingCodeModifier.cake][HotReloadingCodeModifier.cake]] converts module-local and global variables into heap-allocated variables automatically, which is an essential step to making hot-reloadable code possible
665+
- [[https://macoy.me/code/macoy/cakelisp/src/branch/master/runtime/HotReloadingCodeModifier.cake][HotReloadingCodeModifier.cake]] converts module-local and global variables into heap-allocated variables automatically, which is an essential step to making hot-reloadable code possible
666666

667667
You can see that this one feature makes possible many things which would be very cumbersome to do without it.
668668

doc/Tutorial_ProjectSetup.org

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ I also recommend you include a ~COPYING~ for copyright and ~LICENSE~ for license
3434
Let's get cakelisp with ~git~. In ~my-project/~:
3535

3636
#+BEGIN_SRC sh
37-
git clone https://github.com/makuto/cakelisp.git Dependencies/cakelisp
37+
git clone https://macoy.me/code/macoy/cakelisp.git Dependencies/cakelisp
3838
#+END_SRC
3939

4040
*** Submodules
4141
If you are using Git on your project, I recommend you use submodules to track Cakelisp's version. To do so, instead of the above command, run this:
4242
#+BEGIN_SRC sh
43-
git submodule add https://github.com/makuto/cakelisp.git Dependencies/cakelisp
43+
git submodule add https://macoy.me/code/macoy/cakelisp.git Dependencies/cakelisp
4444
#+END_SRC
4545

4646
That way, I can freely update Cakelisp and your project won't break, because your project tracks a specific version of Cakelisp.

0 commit comments

Comments
 (0)