Skip to content

Commit 4f239e1

Browse files
authored
Merge pull request #83 from ddorn/master
Fixing links and typo in docs (Issue #82)
2 parents 22f43eb + 2953bd1 commit 4f239e1

10 files changed

+27
-27
lines changed

docs/libs/bool_not.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Since there is no unary operators in asciidots, this librairy operate a NOT opar
3030
- Any other value than 0 will be changed to 0.
3131

3232
### Source
33-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/bool_not.dots)
34-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20bool_not%20librairy:%20).
33+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/bool_not.dots)
34+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20bool_not%20librairy:%20).
3535

3636
[Back to docs home](../index.md) - [Back to libs](index.md#simple-operations-on-dots)

docs/libs/clone.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This librairy replicates a dot at identical a certain number of times. You can s
3939
- If the `N` dot is not an integer or is negative, this will generate continuously clones of the dot.
4040

4141
### Source
42-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/clone.dots)
43-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20clone%20librairy:%20).
42+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/clone.dots)
43+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20clone%20librairy:%20).
4444

4545
[Back to docs home](../index.md) - [Back to libs](index.md#loops)

docs/libs/for_in_range.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
# Wait.dots
33

44
### Purpose
5-
This librairy generates a range of one-spaced values between two integers. It is similar to the range function of python, the firt value is included but the last one is not.
5+
This librairy generates a range of one-spaced values between two integers. It is similar to the range function of python, the first value is included but the last one is not.
66

77
### Usage
8-
8+
99
O
1010
A+B
1111
E
1212

1313
##### Parameters
14-
- `A`: The beginning value, included in the range
15-
- `B`: The end value, not included
14+
- `A`: The beginning value, included in the range
15+
- `B`: The end value, not included
1616
- `O`: The output, the dots generated will be emitted from the top
1717
- `E`: When the loop is finished a dot goes from the bottom.
1818

@@ -25,19 +25,19 @@ This is a count to 10 example
2525
/-$_#
2626
|
2727
.-#1-f-11#-.
28-
|
28+
|
2929
|
3030
\-&
3131

3232
##### Output
3333

34-
12345678910
34+
12345678910
3535

3636
### Notes
3737
- Once the end dot is emmited, you can send other dots in the lib to use it again
3838

39-
### Source
40-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/for_in_range.dots)
41-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20for_in_range%20librairy:%20).
39+
### Source
40+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/for_in_range.dots)
41+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20for_in_range%20librairy:%20).
4242

4343
[Back to docs home](../index.md) - [Back to libs](index.md#loops)

docs/libs/lib_doc_template.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ This librairy...
3030
-
3131

3232
### Source
33-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/[name].dots)
34-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20[name]%20librairy:%20).
33+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/[name].dots)
34+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20[name]%20librairy:%20).
3535

3636

3737
[Back to docs home](../index.md) - [Back to libs](index.md)

docs/libs/list.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ It's not a good idea to ask, but the complexity of each function is `O(n)` with
6363

6464

6565
### Source
66-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/list.dots)
67-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20list%20librairy:%20).
66+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/list.dots)
67+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20list%20librairy:%20).
6868

6969

7070
[Back to docs home](../index.md) - [Back to libs](index.md#data-structures)

docs/libs/neg.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Since there is no way to set a dot's value to a negative number directly, this l
3434
42
3535

3636
### Source
37-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/neg.dots)
38-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20neg%20librairy:%20).
37+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/neg.dots)
38+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20neg%20librairy:%20).
3939

4040
[Back to docs home](../index.md) - [Back to libs](index.md#simple-operations-on-dots)

docs/libs/negate_id.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Since there is no way to set a dot's id to a negative number directly, this libr
3434
7
3535

3636
### Source
37-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/negate_id.dots)
38-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20negate_id%20librairy:%20).
37+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/negate_id.dots)
38+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20negate_id%20librairy:%20).
3939

4040
[Back to docs home](../index.md) - [Back to libs](index.md#simple-operations-on-dots)

docs/libs/storage.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ This librairy is a queue. You can use it to store a single dot or more than one.
3131
- If you send two dots at the same time (to store or retrieve dots) there's no way to know which one will be first in the queue.
3232

3333
### Source
34-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/storage.dots)
35-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20storage%20librairy:%20).
34+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/storage.dots)
35+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20storage%20librairy:%20).
3636

3737

3838
[Back to docs home](../index.md) - [Back to libs](index.md#data-structures)

docs/libs/val_to_id.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This librairy sets the id of a dot to its value
2626
666
2727

2828
### Source
29-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/val_to_id.dots)
30-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20val_to_id%20librairy:%20).
29+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/val_to_id.dots)
30+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20val_to_id%20librairy:%20).
3131

3232
[Back to docs home](../index.md) - [Back to libs](index.md#simple-operations-on-dots)

docs/libs/wait.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This librairy keeps a dot inside the lib for a certain amount of time. Since eve
2828
- This doesn't work at all in async mode
2929

3030
### Source
31-
The source code is availaible [here](https://github.com/ddorn/asciidots/blob/master/libs/wait.dots)
32-
. If something doesn't work, do not hesitate to [open an issue](https://github.com/ddorn/asciidots/issues/new?title=Bug%20in%20wait%20librairy:%20).
31+
The source code is availaible [here](https://github.com/aaronduino/asciidots/blob/master/dots/libs/wait.dots)
32+
. If something doesn't work, do not hesitate to [open an issue](https://github.com/aaronduino/asciidots/issues/new?title=Bug%20in%20wait%20librairy:%20).
3333

3434
[Back to docs home](../index.md) - [Back to libs](index.md#time)

0 commit comments

Comments
 (0)