Skip to content

Commit b1106ff

Browse files
offirkoadbridge
authored andcommitted
Review updates
1 parent 64eff0a commit b1106ff

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

features/FEATURE_BLE/ble/services/iBeacon.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ class iBeacon {
176176
len(0x15),
177177
majorNumber(__REV16(majNum)),
178178
minorNumber(__REV16(minNum)),
179-
txPower(transmitPower) {
179+
txPower(transmitPower)
180+
{
180181
memcpy(proximityUUID, uuid, sizeof(LocationUUID_t));
181182
}
182183
};
@@ -191,7 +192,7 @@ class iBeacon {
191192
* to group their iBeacons into a single network, a single region and
192193
* identify their organization among others.
193194
*
194-
* @param[in] majNum Beacon major group ID. iBeacon users may use
195+
* @param[in] majNum Beacon major group ID. iBeacon fleet operators may use
195196
* this field to divide the region into subregions, and their network into
196197
* subnetworks.
197198
*

features/storage/blockdevice/BufferedBlockDevice.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ namespace mbed {
3535
*/
3636
class BufferedBlockDevice : public BlockDevice {
3737
public:
38-
/** Create a memory-buffered block device wrapping an underlying block device
38+
/** Lifetime of a memory-buffered block device wrapping an underlying block device
3939
*
4040
* @param bd Block device to back the BufferedBlockDevice
4141
*/
4242
BufferedBlockDevice(BlockDevice *bd);
4343

44-
/** Destroy the memory-buffered block device
44+
/** Lifetime of the memory-buffered block device
4545
*/
4646
virtual ~BufferedBlockDevice();
4747

0 commit comments

Comments
 (0)