Fix makeinfo warnings

* doc/ref/api-languages.texi (Nil):
* doc/ref/statprof.texi (Statprof): Use headings instead of sections to
  avoid makeinfo warnings.
This commit is contained in:
Andy Wingo 2017-03-01 21:49:47 +01:00
commit f2db8fc2f5
2 changed files with 3 additions and 3 deletions

View file

@ -138,7 +138,7 @@ only one bit, and so a test for, for example, @code{#f}-or-@code{nil}
may be made very efficiently. See @code{libguile/boolean.h}, for more
information.
@subsubsection Equality
@subsubheading Equality
Since Scheme's @code{equal?} must be transitive, and @code{'()}
is not @code{equal?} to @code{#f}, to Scheme @code{nil} is not

View file

@ -89,7 +89,7 @@ because the overhead of call-counting unfairly penalizes calls. Still,
this precise mode can be useful at times to do algorithmic optimizations
based on the precise call counts.
@section Implementation notes
@heading Implementation notes
The profiler works by setting the unix profiling signal
@code{ITIMER_PROF} to go off after the interval you define in the call
@ -109,7 +109,7 @@ code has been executing within the profiler. Only run time counts
towards the profile, not wall-clock time. For example, sleeping and
waiting for input or output do not cause the timer clock to advance.
@section Usage
@heading Usage
@deffn {Scheme Procedure} statprof thunk @
[#:loop loop=1] [#:hz hz=100] @