From 2bdf8d4915828d945a0d271530969e25e6bfe3c5 Mon Sep 17 00:00:00 2001 From: Vermoot Date: Mon, 8 Nov 2021 13:55:42 +0100 Subject: [PATCH] Remove superfluous period in an inline code block (#342) --- docs/src/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/configuration.md b/docs/src/configuration.md index 8da8152..ac20485 100644 --- a/docs/src/configuration.md +++ b/docs/src/configuration.md @@ -117,7 +117,7 @@ Now, we declare the body of our widget. We make use of a `box`, which we set a c We need this `box`, as a widget definition can only ever contain a single widget - otherwise, eww would not know if it should align them vertically or horizontally, how it should space them, and so on. -Thus, we wrap multiple children in a `box.`. +Thus, we wrap multiple children in a `box`. This box then contains a reference to the provided attribute `text`, as well as a button. In that buttons `onclick` attribute, we make refer to the provided `name` using string-interpolation syntax: `"${name}"`. This allows us to easily refer to any variables within strings.