Skip to content

Commit a15642a

Browse files
superstasardan-bkennedy
authored andcommitted
fixed a few typos; updated a few links (#276)
1 parent 700f1af commit a15642a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

reading/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ There is a ton of links to extra reading and videos through out the material. Oc
99

1010
### Blogs
1111

12-
[Going Go](http://www.goinggo.net) - William Kennedy
13-
[The acme of foolishness](http://dave.cheney.net) - Dave Cheney
12+
[Ardan Labs Blog](https://www.ardanlabs.com/blog/) - William Kennedy
13+
[The acme of foolishness](https://dave.cheney.net) - Dave Cheney
1414
[The Go Blog](https://blog.golang.org) - Language Team
1515
[Ukiah Smith](https://ukiahsmith.com) - Ukiah Smith
16-
[Mechanical Sympathy](http://mechanical-sympathy.blogspot.com) - Martin Thompson
16+
[Mechanical Sympathy](https://mechanical-sympathy.blogspot.com) - Martin Thompson
1717
[Go Documentation References](https://golang.org/doc/#references) - Language Team
1818

1919
### Interviews

topics/go/language/constants/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ Constants are a way to create a named identifier whose value can never change. T
66

77
* Constants are not variables.
88
* They exist only at compilation.
9-
* Untyped constants can be implictly converted where typed constants and variables can't.
9+
* Untyped constants can be implicitly converted where typed constants and variables can't.
1010
* Think of untyped constants as having a Kind, not a Type.
1111
* Learn about explicit and implicit conversions.
1212
* See the power of constants and their use in the standard library.
1313

1414
## Links
1515

16-
https://golang.org/ref/spec#Constants
17-
http://blog.golang.org/constants
18-
http://www.goinggo.net/2014/04/introduction-to-numeric-constants-in-go.html
16+
[Constants specification](https://golang.org/ref/spec#Constants)
17+
[Constants](https://blog.golang.org/constants) - Rob Pike
18+
[Introduction To Numeric Constants In Go](https://www.ardanlabs.com/blog/2014/04/introduction-to-numeric-constants-in-go.html) - William Kennedy
1919

2020
## Code Review
2121

topics/go/language/embedding/README.md

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

3-
Embedding types provides the final piece of sharing and reusing state and behavior between types. Through the use of inner type promotion, an inner type's fields and methods can be directly accessed by references of the outer type.
3+
Embedding types provide the final piece of sharing and reusing state and behavior between types. Through the use of inner type promotion, an inner type's fields and methods can be directly accessed by references of the outer type.
44

55
## Notes
66

7-
* Embedding types allows us to share state or behavior between types.
7+
* Embedding types allow us to share state or behavior between types.
88
* The inner type never loses its identity.
99
* This is not inheritance.
1010
* Through promotion, inner type fields and methods can be accessed through the outer type.
1111
* The outer type can override the inner type's behavior.
1212

1313
## Links
1414

15-
http://www.goinggo.net/2014/05/methods-interfaces-and-embedded-types.html
15+
[Methods, Interfaces and Embedded Types in Go](https://www.ardanlabs.com/blog/2014/05/methods-interfaces-and-embedded-types.html) - William Kennedy
1616
[Embedding is not inheritance](https://rakyll.org/typesystem/) - JBD
1717

1818
## Code Review

topics/go/language/exporting/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Packages contain the basic unit of compiled code. They define a scope for the id
44

55
## Notes
66

7-
* Code in go is complied into packages and then linked together.
7+
* Code in go is compiled into packages and then linked together.
88
* Identifiers are exported (or remain unexported) based on letter-case.
99
* We import packages to access exported identifiers.
1010
* Any package can use a value of an unexported type, but this is annoying to use.
1111

1212
## Links
1313

14-
http://www.goinggo.net/2014/03/exportedunexported-identifiers-in-go.html
14+
[Exported/Unexported Identifiers In Go](https://www.ardanlabs.com/blog/2014/03/exportedunexported-identifiers-in-go.html) - William Kennedy
1515

1616
## Code Review
1717

0 commit comments

Comments
 (0)