From a00625f37c5233b44b035148db13120a3c0aab69 Mon Sep 17 00:00:00 2001 From: Arkadiusz Lichwa Date: Mon, 18 Jul 2016 11:12:55 +0200 Subject: [PATCH] Bluetooth: doc: Fix displacement of conn type description Improves placement of available connection type values in Bluetooth API documentation by moving comment describing the value to separate line above item. Change-Id: I50eab1eb9659e20da35cd35a6fa0d6fabde3f63d Signed-off-by: Arkadiusz Lichwa --- include/bluetooth/conn.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/bluetooth/conn.h b/include/bluetooth/conn.h index dfa762ed1e5..c1055e2a50f 100644 --- a/include/bluetooth/conn.h +++ b/include/bluetooth/conn.h @@ -111,8 +111,10 @@ const bt_addr_le_t *bt_conn_get_dst(const struct bt_conn *conn); /** Connection Type */ enum { - BT_CONN_TYPE_LE, /** LE Connection Type */ - BT_CONN_TYPE_BR, /** BR/EDR Connection Type */ + /** LE Connection Type */ + BT_CONN_TYPE_LE, + /** BR/EDR Connection Type */ + BT_CONN_TYPE_BR, }; /** LE Connection Info Structure */