Improved code formatting
This commit is contained in:
parent
92447921a7
commit
34e42b9aa2
|
@ -27,7 +27,9 @@ struct ObjectPath {
|
|||
return _value;
|
||||
}
|
||||
|
||||
/// Returns the string representation of this ObjectPath.
|
||||
/++
|
||||
Returns the string representation of this ObjectPath.
|
||||
+/
|
||||
string value() const pure @nogc nothrow @safe {
|
||||
return _value;
|
||||
}
|
||||
|
@ -71,7 +73,10 @@ struct ObjectPath {
|
|||
_value = opBinary!"~"(rhs)._value;
|
||||
}
|
||||
|
||||
/// Returns: false for empty strings or strings that don't match the pattern `(/[0-9A-Za-z_]+)+|/`
|
||||
/++
|
||||
Returns: `false` for empty strings or strings that don't match the
|
||||
pattern `(/[0-9A-Za-z_]+)+|/`.
|
||||
+/
|
||||
static bool isValid(string objPath) pure @nogc nothrow @safe {
|
||||
import std.ascii : isAlphaNum;
|
||||
|
||||
|
|
Loading…
Reference in a new issue