diff options
author | 2022-10-19 03:13:14 +0000 | |
---|---|---|
committer | 2023-02-21 13:52:21 -0800 | |
commit | a0b44cbd1c5e806285df9027cf153534fbf6ee27 (patch) | |
tree | 5a65b1ec3eafd4b085c52389d1f3f84debb387ed /fuzz/fuzz_common.go | |
parent | d3c240fbd8e8a2de8dff55259bbaf14bcfdaa2c4 (diff) |
spelling/grammar fix
Test: Presubmit
Change-Id: I4522ec1c457c7d98adc2820faa457b2bb7cb517a
Merged-In: I4522ec1c457c7d98adc2820faa457b2bb7cb517a
Diffstat (limited to 'fuzz/fuzz_common.go')
-rw-r--r-- | fuzz/fuzz_common.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go index 5e5769bf1..801176e3a 100644 --- a/fuzz/fuzz_common.go +++ b/fuzz/fuzz_common.go @@ -122,9 +122,9 @@ type FuzzConfig struct { // context from: // https://source.android.com/security/overview/updates-resources#context_types. Privilege_level PrivilegedLevel `json:"privilege_level,omitempty"` - // Can the fuzzed code isolated or can be called by multiple users/processes. + // Is the fuzzed code isolated or can it be called by multiple users/processes. Isolated *bool `json:"users_isolation,omitempty"` - // When code was relaeased or will be released. + // When code was released or will be released. Production_date string `json:"production_date,omitempty"` // Prevents critical service functionality like phone calls, bluetooth, etc. Critical *bool `json:"critical,omitempty"` @@ -134,7 +134,7 @@ type FuzzConfig struct { Fuzz_on_haiku_host *bool `json:"fuzz_on_haiku_host,omitempty"` // Component in Google's bug tracking system that bugs should be filed to. Componentid *int64 `json:"componentid,omitempty"` - // Hotlists in Google's bug tracking system that bugs should be marked with. + // Hotlist(s) in Google's bug tracking system that bugs should be marked with. Hotlists []string `json:"hotlists,omitempty"` // Specify whether this fuzz target was submitted by a researcher. Defaults // to false. |