1. 6ffd235 spec: clarify when constant slice indices must be in range by Robert Griesemer · 11 years ago
  2. a766277 spec: clarify value passed for final parameter of variadic functions by Robert Griesemer · 11 years ago
  3. 8d77d2c spec: be more precise about underlying types of predeclared types by Robert Griesemer · 11 years ago
  4. c97778f spec: shadowed return parameters may be disallowed by Robert Griesemer · 11 years ago
  5. 8716981 spec: clarify what is considered a function call for len/cap special case by Robert Griesemer · 11 years ago
  6. a36b5b9 spec: slightly rephrased wording on parsing ambiguity for composite literals by Robert Griesemer · 11 years ago
  7. e6863e7 spec: libraries and implementation are now at Unicode 6.3 by Rob Pike · 11 years ago
  8. ab26623 spec: clarify default "true" condition/tag in for/switch statements by Robert Griesemer · 11 years ago
  9. 227fe5f spec: tighten the wording around . imports by Rob Pike · 11 years ago
  10. 82e2db7 spec: s/and/or/ for correctness and parallelism by Rob Pike · 11 years ago
  11. 1314131 spec: Fix broken type identity link by Emil Hessman · 11 years ago
  12. 8183ed1 spec: example shows wrong value for complex constant by Mihai Borobocea · 11 years ago
  13. f57bf7a spec: clarify rules for blank identifiers by Robert Griesemer · 11 years ago
  14. 15da997 spec: clarify re-use of underlying arrays in slice operations by Robert Griesemer · 11 years ago
  15. e121de2 spec: unsafe.Pointers are pointers by Robert Griesemer · 11 years ago
  16. 48ba6fe doc: move spec and memory model back to /ref/ by Andrew Gerrand · 11 years ago
  17. 4cc71e3 spec: added additional links, added missing 'label' by Robert Griesemer · 11 years ago
  18. 58d18e2 spec: fix small typo in comment for example by Robert Hencke · 11 years ago
  19. cec0954 spec: add example for continue to label by Rob Pike · 11 years ago
  20. 5dd7417 doc: re-organize golang.org site content by Andrew Gerrand · 11 years ago
  21. e333b96 spec: define s[i:j:k] by Robert Griesemer · 11 years ago
  22. 5ce78b7 spec: &x panics if x does by Russ Cox · 12 years ago
  23. 15e6ce2 go_spec.html: clarify that tags are part of struct type identity by Rob Pike · 12 years ago
  24. 2961d22 spec: clarify index and selector expressions by Robert Griesemer · 12 years ago
  25. bd65404 spec: clarify a couple of issues about channels by Rob Pike · 12 years ago
  26. 9f75dd7 undo CL 11884043 / bfd5ed8236d5 by Robert Griesemer · 12 years ago
  27. 58d2960 spec: clarify index and selector expressions by Robert Griesemer · 12 years ago
  28. f331012 spec: update prose in Constants section by Robert Griesemer · 12 years ago
  29. 63f54ae spec: move decl in example closer to use by Robert Griesemer · 12 years ago
  30. 8268ead spec: define notion of named type by Robert Griesemer · 12 years ago
  31. de47f68 spec: fix spec on conversions to match implementations by Robert Griesemer · 12 years ago
  32. bdac989 doc/go_spec: more examples for unspecified cases of the evaluation order by Shenghou Ma · 12 years ago
  33. ab5c762 spec: better wording re: receiving from closed channels by Robert Griesemer · 12 years ago
  34. 6a3859f spec: removed old or invalid TODOs by Robert Griesemer · 12 years ago
  35. bb3a32e spec: fix language about "range" clause by Robert Griesemer · 12 years ago
  36. df29cdd doc/go_spec: fix typos Fixes #5456. by Shenghou Ma · 12 years ago
  37. 2d846f6 spec: fix incorrect example by Robert Griesemer · 12 years ago
  38. 548c65a spec: add another sentence about BOMs by Rob Pike · 12 years ago
  39. b34f055 spec: Go has no 'reference types' by Robert Griesemer · 12 years ago
  40. 462a17e spec: remove most §links for the now more common in-text links by Robert Griesemer · 12 years ago
  41. d020891 spec: add example showing missing return statement by Rob Pike · 12 years ago
  42. b636f19 spec: fix description of initialization by Rob Pike · 12 years ago
  43. 6e15683 spec: define method values by Russ Cox · 12 years ago
  44. 58e21dd spec: remove special int rule for shifts by Robert Griesemer · 12 years ago
  45. c34050f spec: rewrite the description of panic and recover. by Rob Pike · 12 years ago
  46. b66df0e spec: typed indices must be of integer type by Robert Griesemer · 12 years ago
  47. c729ed6 spec: result type of a comparison is always untyped bool by Robert Griesemer · 12 years ago
  48. 5133809 spec: clarify unsafe.Offsetof by Robert Griesemer · 12 years ago
  49. 9905cec spec: terminating statements for functions by Robert Griesemer · 12 years ago
  50. 4be38dd spec: cyclic imports are illegal by Robert Griesemer · 12 years ago
  51. 67a6b4f spec: fallthrough may not appear in last clause of a switch by Robert Griesemer · 12 years ago
  52. 7ae41e8 doc: correct some minor HTML errors found by tidy by Rob Pike · 12 years ago
  53. 61e02ee spec: clarify when range x does not evaluate x by Russ Cox · 12 years ago
  54. 71c941b spec: only require parens around ambiguous conversions by Russ Cox · 12 years ago
  55. 7576179 spec: document fp rounding during explicit constant conversion by Russ Cox · 12 years ago
  56. 0a22018 spec: reject top-level init names by Russ Cox · 12 years ago
  57. 81eb930 spec: clarify that any unsafe.Pointer type is okay in conversion by Russ Cox · 12 years ago
  58. 1b3083e spec: clarify that f(g()) requires that g return >= 1 value by Russ Cox · 12 years ago
  59. 018e89f doc/go_spec: remove extra space, align tags, and change a tab to a space. by Oling Cat · 12 years ago
  60. a0b5b46 doc/go_spec: cap doesn't apply to maps Fixes #4682. by Shenghou Ma · 12 years ago
  61. d367972 spec: clarify lhs syntax for range and select by Robert Griesemer · 12 years ago
  62. ced5715 doc/go_spec.html: clarification about insertion during map iteration by Shenghou Ma · 12 years ago
  63. f1cc0f4 spec: clarify short variable declaration corner cases by Robert Griesemer · 12 years ago
  64. c863db4 spec: s/char_lit/rune_lit/ by Robert Griesemer · 12 years ago
  65. 80a87a9 spec: Use "non-negative" instead of "positive" by Matthew Dempsky · 12 years ago
  66. 614b02d spec: clarify language about unary operator & by Robert Griesemer · 12 years ago
  67. 462860b spec: more explicit comments for constant expression examples by Robert Griesemer · 12 years ago
  68. a9a49fe spec: calling delete on a nil map is a no-op by Robert Griesemer · 12 years ago
  69. 3906706 spec: index and array/slice size constants must fit into an int by Robert Griesemer · 12 years ago
  70. 1d46fc4 spec: Correct typo in method expressions example. by Robin Eklind · 12 years ago
  71. 9c9e811 spec: consistently use "indices" (rather than "indexes") by Robert Griesemer · 12 years ago
  72. e06d901 spec: receiver types in method expressions can be parenthesized by Robert Griesemer · 12 years ago
  73. 4856731 spec: type assertions and type switches must be valid by Robert Griesemer · 12 years ago
  74. 458632a2 spec: BuiltinCall syntax must permit "..." for append by Robert Griesemer · 12 years ago
  75. cc3f21c spec: channel operations are restricted by the channel direction by Robert Griesemer · 12 years ago
  76. 85e451e go spec: receiver, parameter, and result names must always be unique by Robert Griesemer · 12 years ago
  77. 25dd002 spec: clarify use of built-ins in go/defer statements by Robert Griesemer · 12 years ago
  78. d4f3185 spec: add () to method calls in examples by Russ Cox · 12 years ago
  79. e126763 spec: be clearer about the scope of a package name by Robert Griesemer · 12 years ago
  80. 2ae61d5 spec: fix constant expression example by Robert Griesemer · 12 years ago
  81. 002103f spec: we're now at Unicode 6.2.0 by Oling Cat · 12 years ago
  82. 1e8e14c spec: clarify returns, defer statements, and panics by Robert Griesemer · 12 years ago
  83. 369a974 spec: slight wording change to remove a formal contradiction by Robert Griesemer · 12 years ago
  84. 7ea65e5 spec: we're now at Unicode 6.2.0 by Rob Pike · 12 years ago
  85. ddddd39 go spec: constant divisors must not be zero by Robert Griesemer · 12 years ago
  86. 3bde000 go spec: define make() restrictions as for index expressions by Robert Griesemer · 12 years ago
  87. ea7c57a go spec: restrictions for index and slice expressions by Robert Griesemer · 12 years ago
  88. 15970c8 spec: more clarification about deferred functions by Rob Pike · 12 years ago
  89. f04ae13 spec: clarify defer semantics by Rob Pike · 12 years ago
  90. 3188ffc go spec: conversion types starting with "func" must be parenthesized by Robert Griesemer · 12 years ago
  91. 0c49471 go spec: arguments for append may overlap by Robert Griesemer · 12 years ago
  92. 60a6ae8 spec: permit trailing comma in conversions by Robert Griesemer · 12 years ago
  93. b51ad9c spec: a couple of minor tweaks to the wording of the import section by Rob Pike · 12 years ago
  94. 8c058b3 spec: clarify expression statements by Robert Griesemer · 12 years ago
  95. c7631f5 spec: unsafe.Alignof/Sizeof also accept non-variable arguments by Robert Griesemer · 12 years ago
  96. cc06593 spec: clarify section on string types by Robert Griesemer · 12 years ago
  97. 1b4e37a spec: make bitwise operators stand out by Russ Cox · 12 years ago
  98. 488350a spec: an initial BOM can be ignored by Rob Pike · 13 years ago
  99. afac01d spec: ignore BOMS outside of string and rune literals. Happy Birthday UTF-8. by Rob Pike · 13 years ago
  100. 845f4d6 doc/go_spec: fix a typo by Oling Cat · 13 years ago