mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
Add comments and fixup capitalization of flags
This commit is contained in:
parent
6a03262f0c
commit
d04ebe0baa
3 changed files with 11 additions and 4 deletions
|
@ -2914,7 +2914,8 @@ public:
|
|||
|
||||
}
|
||||
|
||||
alias FollowSymlink = Flag!"FollowSymlink";
|
||||
/// Flag to specify whether or not $(D dirEntries) should follow symbolic links
|
||||
alias FollowSymlink = Flag!"followSymlink";
|
||||
|
||||
/++
|
||||
Returns an input range of DirEntry that lazily iterates a given directory,
|
||||
|
|
|
@ -906,6 +906,7 @@ private auto _decodeContent(T)(ubyte[] content, string encoding)
|
|||
}
|
||||
}
|
||||
|
||||
/// Flag to specify whether or not $(D byLine) should provide line terminators
|
||||
alias KeepTerminator = Flag!"keepTerminator";
|
||||
|
||||
/+
|
||||
|
@ -3721,8 +3722,13 @@ struct Curl
|
|||
this.handle = null;
|
||||
}
|
||||
|
||||
alias PauseSending = Flag!"PauseSending";
|
||||
alias PauseReceiving = Flag!"PauseReceiving";
|
||||
/// Flag to specify whether or not $(D pause) should pause or continue
|
||||
/// sending during a transfer
|
||||
alias PauseSending = Flag!"pauseSending";
|
||||
|
||||
/// Flag to specify whether or not $(D pause) should pause or continue
|
||||
/// receiving during a transfer
|
||||
alias PauseReceiving = Flag!"pauseReceiving";
|
||||
|
||||
/// Pause and continue transfers.
|
||||
void pause(PauseSending pauseSending, PauseReceiving pauseReceiving)
|
||||
|
|
|
@ -416,7 +416,7 @@ private struct AbstractTask
|
|||
}
|
||||
}
|
||||
|
||||
/// Used for $(D Task.finish)
|
||||
/// Flag to specify whether or not $(D Task.finish) should block
|
||||
alias Blocking = Flag!"blocking";
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue