From c24a93b49f8ab79c5dcfbfd7944682aa0004ed49 Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Sat, 28 Dec 2024 15:16:27 +0100 Subject: [PATCH] Update default value for inline field in embeds Co-authored-by: Louis <80314632+Louis790@users.noreply.github.com> Signed-off-by: Elitesparkle --- docs/getting-started/styling-messages/embeds.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/styling-messages/embeds.mdx b/docs/getting-started/styling-messages/embeds.mdx index e231647c..3e3a68f6 100644 --- a/docs/getting-started/styling-messages/embeds.mdx +++ b/docs/getting-started/styling-messages/embeds.mdx @@ -148,7 +148,7 @@ embed.add_field(title="Inline Field 3", value="Inline Field 3", inline=True) This small section shows off embed fields. You can add up to 25 fields to embeds with the [`add_field` method](https://docs.pycord.dev/en/master/api.html#discord.Embed.add_field) of the [`discord.Embed`](https://docs.pycord.dev/en/master/api.html#embed) class. These consist of three -keyword arguments: `title`, `value`, and `inline`. `title` and `value` are both required arguments, whereas `inline` is optional and defaults to `False` when not defined. The `inline` argument specifies whether or not space will be divided among the inline fields. There could be a mix of fields where inline has different values too. +keyword arguments: `title`, `value`, and `inline`. `title` and `value` are both required arguments, whereas `inline` is optional and defaults to `True` when not defined. The `inline` argument specifies whether or not space will be divided among the inline fields. There could be a mix of fields where inline has different values too. ```py embed.set_footer(text="Footer! No markdown here.") # footers can have icons too