rename default initializer's ActorSystem parameter name to actorSystem

Konrad, myself, and others feel the longer name would be better, rather than just "system"
This commit is contained in:
Kavon Farvardin
2022-03-07 19:33:42 -07:00
parent 1f47442147
commit 01a5fafa7c
18 changed files with 23 additions and 23 deletions

View File

@@ -56,7 +56,7 @@ distributed actor OK6 {
distributed actor OKMulti {
convenience init(y: Int, system: FakeActorSystem) { // ok
self.init(system: system)
self.init(actorSystem: system)
}
}
@@ -64,7 +64,7 @@ distributed actor OKMulti {
distributed actor OKMultiDefaultValues {
convenience init(y: Int, system: FakeActorSystem, x: Int = 1234) { // ok
self.init(system: system)
self.init(actorSystem: system)
}
}