diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2020-12-17 22:14:49 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 14:14:49 +0100 |
commit | 825293737004cbf94638458f77fa13fd1b07aef2 (patch) | |
tree | a3fd07093e98281b3effeb0899e29cf6428d1a90 /runtime/permissions.rs | |
parent | 2e976080c77812008baa0c83e44a1032a97532f8 (diff) |
chore(runtime): fix typo (#8791)
Diffstat (limited to 'runtime/permissions.rs')
-rw-r--r-- | runtime/permissions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/permissions.rs b/runtime/permissions.rs index 88f9c7179..df957aa01 100644 --- a/runtime/permissions.rs +++ b/runtime/permissions.rs @@ -241,7 +241,7 @@ impl Permissions { if parsed.host().is_none() { return Err(custom_error( "URIError", - "invalid urlormat: <scheme>://<host>[:port][/subpath]", + "invalid url format: <scheme>://<host>[:port][/subpath]", )); } Ok(self.query_net( |