diff options
author | Yesudeep Mangalapilly <yesudeep@google.com> | 2015-08-17 19:27:26 +0530 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2015-08-24 20:04:40 +0000 |
commit | 025fc4eeb24f88429da68676a224d3df9dbe7b77 (patch) | |
tree | bba0ea481a738762fce878407de5f127bfe0a43a /content/slices.article | |
parent | 9fbb216ad1684e71b21265065a29395f67da2e0d (diff) |
content: update stale URLs.
Updates URLs for some code.google.com projects and Wiki pages
that may stop working as a result of code.google.com shutting down
some time in August, 2015.
Change-Id: I012e767faeb011308462bf8fbd2ed65ea6035a30
Reviewed-on: https://go-review.googlesource.com/13656
Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'content/slices.article')
-rw-r--r-- | content/slices.article | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/slices.article b/content/slices.article index f627372..998d4ae 100644 --- a/content/slices.article +++ b/content/slices.article @@ -469,7 +469,7 @@ how the design of slices makes it possible for this simple call to work correctl There are lots more examples of `append`, `copy`, and other ways to use slices on the community-built -[[https://code.google.com/p/go-wiki/wiki/SliceTricks]["Slice Tricks" Wiki page]]. +[[https://golang.org/wiki/SliceTricks]["Slice Tricks" Wiki page]]. * Nil @@ -566,7 +566,7 @@ built-in functions. There's lots to find around the intertubes about slices in Go. As mentioned earlier, -the [[https://code.google.com/p/go-wiki/wiki/SliceTricks]["Slice Tricks" Wiki page]] +the [[https://golang.org/wiki/SliceTricks]["Slice Tricks" Wiki page]] has many examples. The [[http://blog.golang.org/go-slices-usage-and-internals][Go Slices]] blog post describes the memory layout details with clear diagrams. |