File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
testing/integration-tests/src/full_client/client Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ impl<'atblock> AnyStorageInfo<'atblock> {
6060 Ok ( info)
6161 }
6262
63- /// Is the storage entry a map (ie something we'd provide extra keys to to access a value, or otherwise iterate over)?
63+ /// Is the storage entry a map (ie something we'd provide extra keys to access a value, or otherwise iterate over)?
6464 pub fn is_map ( & self ) -> bool {
6565 match self {
6666 AnyStorageInfo :: Legacy ( info) => !info. info . keys . is_empty ( ) ,
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ pub struct Json<T>(pub T);
255255
256256impl Json < serde_json:: Value > {
257257 /// Create a [`Json<serde_json::Value>`] from some serializable value.
258- /// Useful when value types are heterogenous .
258+ /// Useful when value types are heterogeneous .
259259 pub fn value_of < T : serde:: Serialize > ( item : T ) -> Self {
260260 Json ( serde_json:: to_value ( item) . expect ( "item cannot be converted to a serde_json::Value" ) )
261261 }
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async fn fetch_finalized_blocks<T: Config>(
3232 . subscribe_finalized ( )
3333 . await
3434 . expect ( "issue subscribing to finalized in fetch_finalized_blocks" )
35- . skip ( 1 ) // <- skip first block incase next is close to being ready already.
35+ . skip ( 1 ) // <- skip first block in case next is close to being ready already.
3636 . take ( n)
3737 . map ( |r| r. expect ( "issue fetching block in fetch_finalized_blocks" ) )
3838}
You can’t perform that action at this time.
0 commit comments