diff --git a/pages/osx/carthage.md b/pages/osx/carthage.md index 638afd5140..257183547e 100644 --- a/pages/osx/carthage.md +++ b/pages/osx/carthage.md @@ -1,20 +1,20 @@ # carthage -> Carthage is a dependency management tool for Cocoa applications. +> A dependency management tool for Cocoa applications. -- Download and build all dependencies mentioned in Cartfile. Also used to update dependencies to their latest version: +- Download the latest version of all dependencies mentioned in Cartfile, and build them: `carthage update` -- Update dependencies and only build for iOS: +- Update dependencies, but only build for iOS: `carthage update --platform ios` -- Update dependencies but don't build: +- Update dependencies, but don't build any of them: `carthage update --no-build` -- Download and rebuild the current dependency set without updating: +- Download and rebuild the current version of dependencies (without updating them): `carthage bootstrap`