Skip to content

Commit f019de2

Browse files
authored
Fix patch/major instructions. (#7059)
* Fix patch/major instructions. * Consistency across docs
1 parent 996e289 commit f019de2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

AppleSilicon.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ When specifying which version of Firebase you'd like in your Podfile, append `-M
1818
See the following examples:
1919

2020
```
21-
# Explicitly require the special `M1` tagged Firebase version.
22-
pod 'Firebase/Analytics', '~> 7.2.0-M1'
21+
# Explicitly require the special `M1` tagged Firebase version, locked to the major version.
22+
pod 'Firebase/Analytics', '~> 7.2-M1'
2323
2424
# Do the same for any other Firebase pod used.
25-
pod 'Firebase/Database', '~> 7.2.0-M1'
25+
pod 'Firebase/Database', '~> 7.2-M1'
2626
27-
# You can also lock on the minor or major versions like so:
28-
pod 'Firebase/Analytics, '~> 7.2-M1'
29-
pod 'Firebase/Analytics, '~> 7-M1'
27+
# You can also lock on the minor or patch versions like so:
28+
pod 'Firebase/Analytics, '~> 7.2.0-M1'
29+
pod 'Firebase/Analytics, '7.2.0-M1'
3030
```
3131

3232
The CocoaPods issue has been fixed in

0 commit comments

Comments
 (0)