0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00

fix some typos in permissions (#3436)

This commit is contained in:
Andy Finch 2019-12-03 12:22:51 -05:00 committed by Ry Dahl
parent cfa4f540ba
commit 00844b4142

View file

@ -217,7 +217,7 @@ impl DenoPermissions {
if check_path_white_list(path, &self.read_whitelist) { if check_path_white_list(path, &self.read_whitelist) {
return PermissionState::Allow; return PermissionState::Allow;
}; };
self.allow_write.request(&match path { self.allow_read.request(&match path {
None => "Deno requests read access.".to_string(), None => "Deno requests read access.".to_string(),
Some(path) => format!("Deno requests read access to \"{}\".", path), Some(path) => format!("Deno requests read access to \"{}\".", path),
}) })
@ -238,7 +238,7 @@ impl DenoPermissions {
url: &Option<&str>, url: &Option<&str>,
) -> Result<PermissionState, ErrBox> { ) -> Result<PermissionState, ErrBox> {
if self.get_state_net_url(url)? == PermissionState::Ask { if self.get_state_net_url(url)? == PermissionState::Ask {
return Ok(self.allow_run.request(&match url { return Ok(self.allow_net.request(&match url {
None => "Deno requests network access.".to_string(), None => "Deno requests network access.".to_string(),
Some(url) => format!("Deno requests network access to \"{}\".", url), Some(url) => format!("Deno requests network access to \"{}\".", url),
})); }));