From e54193b385614cbd99b9ac4da710374fb8687704 Mon Sep 17 00:00:00 2001 From: Patrick Sean Klein Date: Fri, 26 Apr 2024 20:22:48 +0100 Subject: [PATCH] Fix missing word in documentation --- docs/tutorial/multiple-values/multiple-options.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/multiple-values/multiple-options.md b/docs/tutorial/multiple-values/multiple-options.md index d3da73ffba..75dec9b79c 100644 --- a/docs/tutorial/multiple-values/multiple-options.md +++ b/docs/tutorial/multiple-values/multiple-options.md @@ -90,8 +90,11 @@ The sum is 9.5 ## Passing multiple values in a single argument -Many users expect to be able to pass multiple arguments with a single . -**Typer** supports this with the `separator` option for `typing.List[T]` types: +Many users expect to be able to pass multiple arguments with a single option. +**Typer** supports this with the `separator` option for `typing.List[T]` types. +This feature makes it easy to parse multiple values from a single command-line argument into a list in your application. + +To use this feature, define a command-line option that accepts multiple values separated by a specific character (such as a comma). Here's an example of how to implement this: === "Python 3.7+"