diff --git a/doc/langref.html.in b/doc/langref.html.in index 0ae49d850059ee6fd7b1981db029df376e12e54c..9b178fae44ef0634c2714d7f8618b1a208e62000 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -8322,17 +8322,17 @@ keyword <- KEYWORD_addrspace / KEYWORD_align / KEYWORD_allowzero / KEYWORD_and
  • Communicate intent precisely.
  • Edge cases matter.
  • Favor reading code over writing code.
  • -
  • Only one obvious way to do things.
  • +
  • There is an idiomatic way to do it.
  • Runtime crashes are better than bugs.
  • Compile errors are better than runtime crashes.
  • Incremental improvements.
  • Avoid local maximums.
  • Reduce the amount one must remember.
  • -
  • Focus on code rather than style.
  • -
  • Resource allocation may fail; resource deallocation must succeed.
  • -
  • Memory is a resource.
  • -
  • Together we serve the users.
  • +
  • Focus on logic, not style.
  • +
  • Resource allocation may fail.
  • +
  • Resource deallocation must succeed.
  • +

    Together, we serve the users!

    {#header_close#} {#header_close#} diff --git a/src/main.zig b/src/main.zig index 09073eaa08283031212cf062f4b09019b3d4043f..30ac73098d9728201ce57db00b76c111f630c44c 100644 --- a/src/main.zig +++ b/src/main.zig @@ -6273,16 +6273,17 @@ const info_zen = \\ * Communicate intent precisely. \\ * Edge cases matter. \\ * Favor reading code over writing code. - \\ * Only one obvious way to do things. + \\ * There is an idiomatic way to do it. \\ * Runtime crashes are better than bugs. \\ * Compile errors are better than runtime crashes. \\ * Incremental improvements. \\ * Avoid local maximums. \\ * Reduce the amount one must remember. - \\ * Focus on code rather than style. - \\ * Resource allocation may fail; resource deallocation must succeed. - \\ * Memory is a resource. - \\ * Together we serve the users. + \\ * Focus on logic, not style. + \\ * Resource allocation may fail. + \\ * Resource deallocation must succeed. + \\ + \\Together, we serve the users! \\ \\ ;