authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-01-03 04:08:43-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-01-03 21:11:58-05:00
log5c8600d790d28e0765c806ce42346ba17c974630
tree0f8281f11c8118f2aa7aa338b31980ad52cb193c
parent5a800db48cde943a7fd80fdbfb42bc69a325ca76

add december in review to reading material; fix docs


2 files changed, 2 insertions(+), 1 deletions(-)

doc/home.html.in+1
...@@ -50,6 +50,7 @@...@@ -50,6 +50,7 @@
50 </ul>50 </ul>
51 <h2 id="reading-material">Reading Material</h2>51 <h2 id="reading-material">Reading Material</h2>
52 <ul>52 <ul>
53 <li>2018-01-03 - <a href="http://andrewkelley.me/post/zig-december-2017-in-review.html">December 2017 in Review</a></li>
53 <li>2017-10-17 - <a href="download/0.1.1/release-notes.html">Zig 0.1.1 Release Notes</a></li>54 <li>2017-10-17 - <a href="download/0.1.1/release-notes.html">Zig 0.1.1 Release Notes</a></li>
54 <li>2017-07-19 - <a href="http://tiehuis.github.io/iterative-replacement-of-c-with-zig">Iterative Replacement of C with Zig</a></li>55 <li>2017-07-19 - <a href="http://tiehuis.github.io/iterative-replacement-of-c-with-zig">Iterative Replacement of C with Zig</a></li>
55 <li>2017-02-16 - <a href="http://andrewkelley.me/post/a-better-way-to-implement-bit-fields.html">A Better Way to Implement Bit-Fields</a></li>56 <li>2017-02-16 - <a href="http://andrewkelley.me/post/a-better-way-to-implement-bit-fields.html">A Better Way to Implement Bit-Fields</a></li>
doc/langref.html.in+1-1
...@@ -3397,7 +3397,7 @@ fn doAThing() -&gt; ?&amp;Foo {...@@ -3397,7 +3397,7 @@ fn doAThing() -&gt; ?&amp;Foo {
3397 <pre><code class="zig">fn doAThing(nullable_foo: ?&amp;Foo) {3397 <pre><code class="zig">fn doAThing(nullable_foo: ?&amp;Foo) {
3398 // do some stuff3398 // do some stuff
33993399
3400 if (const foo ?= nullable_foo) {3400 if (nullable_foo) |foo| {
3401 doSomethingWithFoo(foo);3401 doSomethingWithFoo(foo);
3402 }3402 }
34033403