Skip to content

Commit

Permalink
Remove "or“ in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zoontek committed Dec 22, 2023
1 parent 4d1bd91 commit 04d19af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class MainActivity extends ReactActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); // or super.onCreate(null) with react-native-screens
super.onCreate(savedInstanceState); // super.onCreate(null) with react-native-screens
RNBars.init(this); // initialize react-native-bars
}
}
Expand All @@ -76,7 +76,7 @@ class MainActivity : ReactActivity() { {
//

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) // or super.onCreate(null) with react-native-screens
super.onCreate(savedInstanceState) // super.onCreate(null) with react-native-screens
RNBars.init(this) // initialize react-native-bars
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MainActivity : ReactActivity() {
DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) // or super.onCreate(null) with react-native-screens
super.onCreate(savedInstanceState) // super.onCreate(null) with react-native-screens
RNBars.init(this) // initialize react-native-bars
}
}

0 comments on commit 04d19af

Please sign in to comment.