Skip to content

Commit

Permalink
add december in review to reading material; fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed Jan 4, 2018
1 parent 5a800db commit 5c8600d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/home.html.in
Expand Up @@ -50,6 +50,7 @@
</ul>
<h2 id="reading-material">Reading Material</h2>
<ul>
<li>2018-01-03 - <a href="http://andrewkelley.me/post/zig-december-2017-in-review.html">December 2017 in Review</a></li>
<li>2017-10-17 - <a href="download/0.1.1/release-notes.html">Zig 0.1.1 Release Notes</a></li>
<li>2017-07-19 - <a href="http://tiehuis.github.io/iterative-replacement-of-c-with-zig">Iterative Replacement of C with Zig</a></li>
<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>
Expand Down
2 changes: 1 addition & 1 deletion doc/langref.html.in
Expand Up @@ -3397,7 +3397,7 @@ fn doAThing() -&gt; ?&amp;Foo {
<pre><code class="zig">fn doAThing(nullable_foo: ?&amp;Foo) {
// do some stuff

if (const foo ?= nullable_foo) {
if (nullable_foo) |foo| {
doSomethingWithFoo(foo);
}

Expand Down

0 comments on commit 5c8600d

Please sign in to comment.