michaelochs / BCScanner

A barcode and qr code scanner that wraps the iOS7 scanning capabilities in a UIViewController
Apache License 2.0
29 stars 13 forks source link

Header comments should be without a leading asterisk #10

Closed michaelochs closed 9 years ago

michaelochs commented 9 years ago

To be compatible to cocoadocs, the header comments should be without a leading asterisk in each line.

Old look:

/**
 * This is the gesture recognizer that is used to let the user focus and expose to a
 * specific point in the field of view. You can access this property when you want to
 * more precisely control what taps should be recognized.
 */

New look:

/**
 This is the gesture recognizer that is used to let the user focus and expose to a
 specific point in the field of view. You can access this property when you want to
 more precisely control what taps should be recognized.
 */