authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-15 13:40:01-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-15 13:40:01-07:00
logc803d334d0b2f376006aa7709c7e282b52e9c987
treec1cd102f23ab51a9be96a7cc2669105508877966
parentb2860aa3e4d86e8712192c8a2068867e3ed04ef2

update the zen of zig


2 files changed, 6 insertions(+), 4 deletions(-)

doc/langref.html.in+3-2
...@@ -11392,8 +11392,9 @@ keyword &lt;- KEYWORD_align / KEYWORD_and / KEYWORD_anyframe / KEYWORD_anytype...@@ -11392,8 +11392,9 @@ keyword &lt;- KEYWORD_align / KEYWORD_and / KEYWORD_anyframe / KEYWORD_anytype
11392 <li>Incremental improvements.</li>11392 <li>Incremental improvements.</li>
11393 <li>Avoid local maximums.</li>11393 <li>Avoid local maximums.</li>
11394 <li>Reduce the amount one must remember.</li>11394 <li>Reduce the amount one must remember.</li>
11395 <li>Minimize energy spent on coding style.</li>11395 <li>Focus on code rather than style.</li>
11396 <li>Resource deallocation must succeed.</li>11396 <li>Resource allocation may fail; resource deallocation must succeed.</li>
11397 <li>Memory is a resource.</li>
11397 <li>Together we serve the users.</li>11398 <li>Together we serve the users.</li>
11398 </ul>11399 </ul>
11399 {#header_close#}11400 {#header_close#}
src-self-hosted/main.zig+3-2
...@@ -1617,8 +1617,9 @@ pub const info_zen =...@@ -1617,8 +1617,9 @@ pub const info_zen =
1617 \\ * Incremental improvements.1617 \\ * Incremental improvements.
1618 \\ * Avoid local maximums.1618 \\ * Avoid local maximums.
1619 \\ * Reduce the amount one must remember.1619 \\ * Reduce the amount one must remember.
1620 \\ * Minimize energy spent on coding style.1620 \\ * Focus on code rather than style.
1621 \\ * Resource deallocation must succeed.1621 \\ * Resource allocation may fail; resource deallocation must succeed.
1622 \\ * Memory is a resource.
1622 \\ * Together we serve the users.1623 \\ * Together we serve the users.
1623 \\1624 \\
1624 \\1625 \\