Fix table rows

Dave Day 2014-12-10 15:32:04 +11:00
parent 0d6986a1f7
commit 682cb0284b
2 changed files with 4 additions and 4 deletions

@ -13,7 +13,7 @@ A common Go newbie mistake is to over-use channels and goroutines just because i
As a general guide, though: As a general guide, though:
| **Channel** | **Mutex**| | **Channel** | **Mutex**|
|:------------|:| |:------------|:---------|
| passing ownership of data,<br />distributing units of work,<br /> communicating async results | caches,<br />state | | passing ownership of data,<br />distributing units of work,<br /> communicating async results | caches,<br />state |
If you ever find your sync.Mutex locking rules are getting too complex, ask yourself whether using channel(s) might be simpler. If you ever find your sync.Mutex locking rules are getting too complex, ask yourself whether using channel(s) might be simpler.

@ -6,7 +6,7 @@ Required:
* If you want to run go1.3 or 1.4 on OpenBSD 5.6, see http://golang.org/issue/9102 * If you want to run go1.3 or 1.4 on OpenBSD 5.6, see http://golang.org/issue/9102
| **Kernel version** | **Min. version** | **Max. version**| | **Kernel version** | **Min. version** | **Max. version**|
|:-------------------|:-----------------|:| |:-------------------|:-----------------|:----------------|
| 5.6 | go1.5 | go1.5 | | 5.6 | go1.5 | go1.5 |
| 5.5 | go1.3 | go1.5 | | 5.5 | go1.3 | go1.5 |