ietf-wg-bpf / ebpf-docs

eBPF Standard Documentation
37 stars 5 forks source link

ISA: minor formatting issue in TXT version #118

Closed dthaler closed 2 months ago

dthaler commented 3 months ago

Section 3.1:

   |  a % n = a - n * trunc(a / n)

the above one might be ok, but section 4 has

   |  Instructions using DW belong to the base64 conformance group.

which looks wrong even in the HTML version.

dthaler commented 2 months ago

The first occurrence can be fixed by changing the preceding line as follows:

-(where -13 % 3 == -1) as implemented in C, Go, etc.:
+(where -13 % 3 == -1) as implemented in C, Go, etc.::

The second one is due to a bug in rst2rfcxml which is fixed in https://github.com/dthaler/rst2rfcxml/pull/171

dthaler commented 2 months ago

The first issue is addressed in https://mailarchive.ietf.org/arch/msg/bpf/yatI-qX8tW-shSYgrh0RgGrN0fY/

dthaler commented 2 months ago

Fixed in draft-02