1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 18:26:00 +02:00

pod.md: improve example descriptions

This commit is contained in:
Waldir Pimenta 2016-08-18 12:18:17 +01:00
parent 9a3906ecbb
commit 948bea2207

View file

@ -6,7 +6,7 @@
`pod init` `pod init`
- Download all pod defined in Podfile and create an Xcode Pods library project in `./Pods`: - Download and install all pods defined in the Podfile (that haven't been installed before):
`pod install` `pod install`
@ -14,15 +14,15 @@
`pod list` `pod list`
- Show the outdated pods in the current `Podfile.lock`: - Show the outdated pods (of those currently installed):
`pod outdated` `pod outdated`
- Update all pods in the current project to their newest version: - Update all currently installed pods to their newest version:
`pod update` `pod update`
- Update a specific pod in the current project to their newest version: - Update a specific (previously installed) pod to its newest version:
`pod update {{pod_name}}` `pod update {{pod_name}}`