style.lua.9: remove mention of $FreeBSD$

Also restore a comment line in an example which previously started with
-- $FreeBSD$ but was removed in 6ef644f588.  The example shows the of
a module require statement block following the license header.
This commit is contained in:
Ed Maste 2024-02-12 10:36:36 -05:00
parent fd1066bed6
commit f1bd7311fb

View file

@ -44,14 +44,13 @@ is silent on an issue.
The copyright header should be a series of single-line comments.
Use the single-line comment style for every line in a multi-line comment.
.Pp
After any copyright header, there is a blank line, and the
.Li $\&FreeBSD$
comment for non-C/C++ source files.
After any copyright header there is a blank line.
.Pp
The preferred method of including other files and modules is with
.Fn require name ,
such as:
.Bd -literal
-- License block
config = require("config");
menu = require("menu");