diff options
| author | Jeff Carr <[email protected]> | 2024-01-01 17:47:23 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-01 17:47:23 -0600 |
| commit | d8f1107387af688e9b161a0c01dd70241741edba (patch) | |
| tree | f2401d09c8dfb4eb5cfb627e1cea3e635f1b1855 | |
| parent | e9a0ee35c94fe52b52ab76f854ee7c2a26a1a7a1 (diff) | |
fix doc paths to go.wit.comv0.9.2
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | Makefile | 3 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | args.go | 2 |
3 files changed, 4 insertions, 5 deletions
@@ -65,8 +65,7 @@ git.wit.org: git push witgui --tags # sync repo to the github backup -# git remote add github [email protected]:witorg/gui.git -# git remote add github2 [email protected]:wit-go/gui.git +# git remote add github [email protected]:wit-go/gui.git github: git push origin master git push origin devel @@ -38,7 +38,7 @@ package main import ( "log" - "git.wit.org/wit/gui" + "go.wit.com/wit/gui/gui" ) var window *gui.Node // This is the beginning of the binary tree of widgets @@ -94,7 +94,7 @@ Useful links and other external things which might be useful * Wikipedia Graphical widget - [https://en.wikipedia.org/wiki/Graphical_widget](https://en.wikipedia.org/wiki/Graphical_widget) -* Github mirror - [https://github.com/witorg/gui](https://github.com/witorg/gui) +* Github mirror - [https://github.com/wit-go/gui](https://github.com/wit-go/gui) * Federated git pull - [https://github.com/forgefed/forgefed](https://github.com/forgefed/forgefed) * GO Style Guide - [https://google.github.io/styleguide/go/index](https://google.github.io/styleguide/go/index) @@ -21,7 +21,7 @@ func init() { newlog.Register("gui", "debugGui", &debugGui) for _, s := range newlog.ListFlags() { - newlog.Info("go.wit.org/gui ListFlags() returned:", s) + newlog.Info("go.wit.com/gui/gui ListFlags() returned:", s) } } |
