## Proposed Change See: https://github.com/w3c/webauthn/blob/main/index.bs#L7107 This is related to DPK processing rules for the create and get operations. It says: ``` Let attObjForDevicePublicKey be the value of the [devicePubKey](https://w3c.github.io/webauthn/#dom-authenticationextensionsclientoutputs-devicepubkey) member of clientExtensionResults. ``` I am fairly sure that this is not correct, insofar as attObjForDevicePublicKey is not a member of clientExtensionResults - instead it is authenticator extension data (i.e. part of the `extensions` of the `authData` variable). The same issue is relevant to section 10.2.2.3.2 (Authentication processing rules) step 1. I think these should say something like: ``` Let attObjForDevicePublicKey be the value of the [devicePubKey](https://w3c.github.io/webauthn/#dom-authenticationextensionsclientoutputs-devicepubkey) member of the extensions in authData. ```