From 8e75802044fb9ffb1596f871d5a7bd4bd4a00504 Mon Sep 17 00:00:00 2001 From: Vincent Coubard Date: Fri, 31 Aug 2018 09:52:32 +0100 Subject: [PATCH] NFC doc: Fix constructor signature. --- docs/design-documents/nfc/nfc_design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design-documents/nfc/nfc_design.md b/docs/design-documents/nfc/nfc_design.md index 213d32b57f..8ebf221ab0 100644 --- a/docs/design-documents/nfc/nfc_design.md +++ b/docs/design-documents/nfc/nfc_design.md @@ -49,7 +49,7 @@ - [Interoperability](#interoperability) - [HAL testing](#hal-testing) - [Dependencies](#dependencies) - + ## Revision history | Revision | Date | Authors | Mbed OS version | Comments | @@ -313,7 +313,7 @@ This class is the ancestor class for all endpoints which have the capability of User-facing API: ```cpp -NFCNDEFCapable(uint8_t* buffer, size_t buffer_size); +NFCNDEFCapable(const Span &buffer); ``` The class is constructed using a scratch buffer which is used to encode and/or decode NDEF messages.