Skip to content

Commit b6e1263

Browse files
committed
updates
1 parent 3625374 commit b6e1263

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You will need Docker for the supported Linux test path.
2121
#### Plugins
2222

2323
* If you use vim, take a look at
24-
[vim-ace](https://github.com/acelang/vim-ace).
24+
[vim-ace](https://github.com/wbbradley/vim-ace).
2525

2626

2727
## Development workflow

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Ace Language
22

33

4-
[![Tests](https://github.com/acelang/ace/workflows/Tests/badge.svg)](https://github.com/acelang/ace/actions?query=workflow%3ATests)
4+
[![Tests](https://github.com/wbbradley/ace/workflows/Tests/badge.svg)](https://github.com/wbbradley/ace/actions?query=workflow%3ATests)
55

66
## Fundamentals
77

@@ -14,7 +14,7 @@ type-classes to allow ad-hoc polymorphism, `with` control-flow semantics for bra
1414
To play with Ace in Docker, try this.
1515

1616
```
17-
git clone https://github.com/acelang/ace.git
17+
git clone https://github.com/wbbradley/ace.git
1818
cd ace
1919
2020
# Get a docker image set up ready to run a build (assumes Docker is running).
@@ -205,4 +205,4 @@ The best way to learn more at this time is to read through the
205205
TODO: struct types do not support pattern matching. proposed solution: eliminate
206206
structs, but add names to newtypes.
207207

208-
[![HitCount](http://hits.dwyl.com/acelang/ace.svg)](http://hits.dwyl.com/acelang/ace)
208+
[![HitCount](http://hits.dwyl.com/wbbradley/ace.svg)](http://hits.dwyl.com/wbbradley/ace)

ace.1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ace [\fBtest\fR] \-\- run unit tests
2222
.SH DESCRIPTION
2323
.na
2424
Ace is a general purpose programming language.
25-
The source code is available at \fBhttps://github.com/acelang/ace\fR.
25+
The source code is available at \fBhttps://github.com/wbbradley/ace\fR.
2626
.P
2727
ace
2828
.B run
@@ -51,11 +51,11 @@ When searching for the specified \fIprogram\fR, \fBace\fR will look in the curre
5151
.br
5252
ACE_ROOT=\fI/usr/local/share/ace\fR
5353
Should point to the base directory for standard runtime and library.
54-
If
54+
If
5555
.B ACE_PATH
5656
is not set, it will default to
5757
.B $ACE_ROOT/lib
58-
\&. If
58+
\&. If
5959
.B ACE_RUNTIME
6060
is not set, it will default to "
6161
.B $ACE_ROOT/runtime
@@ -65,7 +65,7 @@ is not set, it will default to "
6565
ACE_PATH=\fI/usr/local/share/ace/lib\fR
6666
A colon-separated list of directories to search for imported libraries.
6767
Libraries are imported with the `import` keyword.
68-
The `lib/std.ace` library is called the prelude and is automatically imported unless
68+
The `lib/std.ace` library is called the prelude and is automatically imported unless
6969
.B NO_PRELUDE
7070
is given. Setting this variable overrides the
7171
.B $ACE_ROOT/lib
@@ -140,5 +140,5 @@ SOFTWARE.
140140
Note that this version of Ace is pre-release quality software. No guarantees \
141141
are given regarding changes to protocols, language grammar, semantics, or \
142142
standard library interface. Bug reports are greatly appreciated. Report bugs to \
143-
the Ace GitHub site. \fBhttps://github.com/acelang/ace/issues\fR. Pull Requests \
143+
the Ace GitHub site. \fBhttps://github.com/wbbradley/ace/issues\fR. Pull Requests \
144144
are welcome!

docker-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
IMAGE="acelang/ace"
2+
IMAGE="wbbradley/ace"
33
VERSION="$(cat VERSION)"
44

55
docker build -t "${IMAGE}:${VERSION}" .

docker-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set +x
66
# Running docker tests by default, add a parameter to execute that command
77
# instead of the tests.
88

9-
IMAGE="acelang/ace"
9+
IMAGE="wbbradley/ace"
1010
VERSION="$(cat VERSION)"
1111
NAME="ace-build"
1212

roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- [ ] deriving Ord
1515
- [ ] error on unused imports
1616
- [ ] allow nested modules (ie: net/http)
17-
- [ ] design/implement some form of [functional dependencies](https://github.com/acelang/reference-docs/blob/master/docs/2000-jones-functional-dependencies.pdf) for mptc sanity
17+
- [ ] design/implement some form of [functional dependencies](https://github.com/wbbradley/reference-docs/blob/master/docs/2000-jones-functional-dependencies.pdf) for mptc sanity
1818
- [ ] unused variable check (variables that only appear on lhs)
1919
- [ ] higher-kinded type functions to allow for pulling types from other types for the purpose of mapping between types (for example to_with :: Either a b -> WithElseResource resource error)
2020

0 commit comments

Comments
 (0)