std.stdio: use proper block comments

This commit is contained in:
Walter Bright 2017-02-09 13:34:10 -08:00
parent 140aa0da1f
commit 62b208f28d

View file

@ -3177,16 +3177,21 @@ void main()
/// Used to specify the lock type for $(D File.lock) and $(D File.tryLock). /// Used to specify the lock type for $(D File.lock) and $(D File.tryLock).
enum LockType enum LockType
{ {
/// Specifies a _read (shared) lock. A _read lock denies all processes /**
/// write access to the specified region of the file, including the * Specifies a _read (shared) lock. A _read lock denies all processes
/// process that first locks the region. All processes can _read the * write access to the specified region of the file, including the
/// locked region. Multiple simultaneous _read locks are allowed, as * process that first locks the region. All processes can _read the
/// long as there are no exclusive locks. * locked region. Multiple simultaneous _read locks are allowed, as
* long as there are no exclusive locks.
*/
read, read,
/// Specifies a read/write (exclusive) lock. A read/write lock denies all
/// other processes both read and write access to the locked file region. /**
/// If a segment has an exclusive lock, it may not have any shared locks * Specifies a read/write (exclusive) lock. A read/write lock denies all
/// or other exclusive locks. * other processes both read and write access to the locked file region.
* If a segment has an exclusive lock, it may not have any shared locks
* or other exclusive locks.
*/
readWrite readWrite
} }