bug in LPC13xx datasheet (user.manual.lpc13xx.pdf)

I found a nasty bug in the datasheet.

I was programming the spi port an olimex LPC-1343 board to connect a kent display.

I wanted the spi clock on PIO2_11 (connected to uext.)

no way to get a clock work, after a lot of time spent to track the signal with an oscilloscope,

I finally I discovered that the information in the datasheet was wrong

the datasheet say:

2:0 FUNC Selects pin function. All other values are reserved. 000

0x0 Selects function PIO2_11.

0x2 Selects function SCK0 (only if pin PIO2_11/SCK0 selected in

Table 139)

it should say:

2:0 FUNC Selects pin function. All other values are reserved. 000

0x0 Selects function PIO2_11.

0x1 Selects function SCK0 (only if pin PIO2_11/SCK0 selected in

Table 139)

the right value is 1 and not 2