File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed
proposals/NNNN-hip-template Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ clean-rust:
74
74
75
75
# TESTING
76
76
# Some tests cannot run with other tests, they are marked as ignored so that cargo test works
77
- # there may be tests that we really want to ignore so we cant just use --ignored and we have to
77
+ # there may be tests that we really want to ignore so we can't just use --ignored and we have to
78
78
# Specify the test name of the ignored tests that we want to run
79
79
test-rust target = default-target features = " ": (test-rust-int " rust" target features) (test-rust-int " c" target features) (test-seccomp target)
80
80
# unit tests
Original file line number Diff line number Diff line change 27
27
This section is incredibly important for producing high-quality, user-focused
28
28
documentation such as release notes or a development roadmap. It should be
29
29
possible to collect this information before implementation begins, in order to
30
- avoid requiring implementors to split their attention between writing release
30
+ avoid requiring implementers to split their attention between writing release
31
31
notes and implementing the feature itself. HIP editors should help to ensure
32
32
that the tone and content of the `Summary` section is useful for a wide audience.
33
33
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pub enum HyperlightError {
55
55
BoundsCheckFailed ( u64 , usize ) ,
56
56
57
57
/// Checked Add Overflow
58
- #[ error( "Couldnt add offset to base address. Offset: {0}, Base Address: {1}" ) ]
58
+ #[ error( "Couldn't add offset to base address. Offset: {0}, Base Address: {1}" ) ]
59
59
CheckedAddOverflow ( u64 , u64 ) ,
60
60
61
61
/// Cross beam channel receive error
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ mod tests {
384
384
385
385
fn terminate_vcpu_after_1000ms ( ) -> Result < ( ) > {
386
386
// This test relies upon a Hypervisor being present so for now
387
- // we will skip it if there isnt one.
387
+ // we will skip it if there isn't one.
388
388
if !is_hypervisor_present ( ) {
389
389
println ! ( "Skipping terminate_vcpu_after_1000ms because no hypervisor is present" ) ;
390
390
return Ok ( ( ) ) ;
@@ -433,7 +433,7 @@ mod tests {
433
433
#[ test]
434
434
fn test_terminate_vcpu_calling_host_spinning_cpu ( ) {
435
435
// This test relies upon a Hypervisor being present so for now
436
- // we will skip it if there isnt one.
436
+ // we will skip it if there isn't one.
437
437
if !is_hypervisor_present ( ) {
438
438
println ! ( "Skipping test_call_guest_function_by_name because no hypervisor is present" ) ;
439
439
return ;
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ impl VMPartition {
99
99
let whvmapgparange2_func = unsafe {
100
100
match try_load_whv_map_gpa_range2 ( ) {
101
101
Ok ( func) => func,
102
- Err ( e) => return Err ( new_error ! ( "Cant find API: {}" , e) ) ,
102
+ Err ( e) => return Err ( new_error ! ( "Can't find API: {}" , e) ) ,
103
103
}
104
104
} ;
105
105
Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ mod tests {
360
360
load_address : 5368709120 ,
361
361
num_relocations : ( 900 ..1200 ) . collect ( ) ,
362
362
// range of possible # of relocations
363
- // (hardware dependant )
363
+ // (hardware dependent )
364
364
}
365
365
} else {
366
366
PEFileTest {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ limitations under the License.
17
17
use tracing:: { instrument, Span } ;
18
18
19
19
/// Configuration options for setting up a new `UninitializedSandbox` and
20
- /// subsequent inititialized sandboxes, including `MultiUseSandbox`.
20
+ /// subsequent initialized sandboxes, including `MultiUseSandbox`.
21
21
///
22
22
/// A `SandboxRunOptions` instance must be created with either in-process
23
23
/// or in-hypervisor execution mode, and then can optionally be augmented
You can’t perform that action at this time.
0 commit comments