File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pub struct DependencyManager {
37
37
pub config : Configuration ,
38
38
39
39
/// SQLite database connection
40
- /// This is not a real service but is is needed to instanciate all store
40
+ /// This is not a real service but is is needed to instantiate all store
41
41
/// services. Shall be private dependency.
42
42
pub sqlite_connection : Arc < Mutex < Connection > > ,
43
43
Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ mod tests {
352
352
db_checker. apply ( ) . await . unwrap ( ) ;
353
353
check_database_version ( connection. clone ( ) , 1 ) . await ;
354
354
355
- // re instanciate a new checker with no migration registered (version 0).
355
+ // re instantiate a new checker with no migration registered (version 0).
356
356
let db_checker = DatabaseVersionChecker :: new (
357
357
slog_scope:: logger ( ) ,
358
358
ApplicationNodeType :: Aggregator ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ pub struct EraMarker {
17
17
}
18
18
19
19
impl EraMarker {
20
- /// instanciate a new [EraMarker].
20
+ /// instantiate a new [EraMarker].
21
21
pub fn new ( name : & str , epoch : Option < Epoch > ) -> Self {
22
22
let name = name. to_string ( ) ;
23
23
You can’t perform that action at this time.
0 commit comments