@@ -222,7 +222,7 @@ enum Command {
222222 /// `gleam.toml`. You can edit this file manually, or use the `gleam add`
223223 /// and `gleam remove` commands.
224224 ///
225- /// Packge versions follow semantic versioning: MAJOR.MINOR.PATCH.
225+ /// Package versions follow semantic versioning: MAJOR.MINOR.PATCH.
226226 /// - Major updates include breaking changes, either type changes or
227227 /// semantic changes.
228228 /// - Minor updates include new functionality, but no breaking changes.
@@ -241,7 +241,7 @@ enum Command {
241241 /// dependencies. These are included in your production application, or
242242 /// are used as the dependencies when published as a library. The
243243 /// `[dev_dependencies]` section holds dependencies that are only used
244- /// during development. e.g. code used for testing the package.
244+ /// during development, e.g. code used for testing the package.
245245 ///
246246 /// ## Syntax examples:
247247 ///
@@ -382,10 +382,10 @@ target: Option<Target>,
382382 /// Add the package "wibble":
383383 /// gleam add wibble
384384 ///
385- /// Add the package "wibble", requiring version v2.0.0 or higher :
385+ /// Add the package "wibble", requiring version >= v2.0.0 and < v3.0.0 :
386386 /// gleam add wibble@2
387387 ///
388- /// Add the package "wibble", requiring version v2.5.1 or higher :
388+ /// Add the package "wibble", requiring version >= v2.5.1 and < v3.0.0 :
389389 /// gleam add wibble@2.5.1
390390 ///
391391 /// Add multiple packages:
0 commit comments