From 0f1159184f86f1bfc032147cb9dd6c3bbc9bd578 Mon Sep 17 00:00:00 2001 From: Mattes Bieniarz <79235640+flauschpantoffel@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:19:20 +0200 Subject: [PATCH] remove extra whitespace before comma --- pages/docs/execute.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/execute.md b/pages/docs/execute.md index 40bd5e2..a089b51 100644 --- a/pages/docs/execute.md +++ b/pages/docs/execute.md @@ -12,7 +12,7 @@ The Soufflé permits facts to be sourced from tab-separated input files to separ .decl my_relation(a:number,b:number) .input my_relation ``` -defines an input relation ```my_relation``` with two number columns. Note that a relation becomes an input relation with the keyword ```input``` at the end of a declaration. For the aforementioned example , souffle expects a tab-separated file ```my_relation.facts``` in either the current directory (if no ```-F``` flag was specified) or in the directory `````` with the option ```-F ```. Note that there is an exception if a relation is an input relation and is declared in an instantiation of a [component](components). +defines an input relation ```my_relation``` with two number columns. Note that a relation becomes an input relation with the keyword ```input``` at the end of a declaration. For the aforementioned example, souffle expects a tab-separated file ```my_relation.facts``` in either the current directory (if no ```-F``` flag was specified) or in the directory `````` with the option ```-F ```. Note that there is an exception if a relation is an input relation and is declared in an instantiation of a [component](components). If more precise control over file location is needed, more options can be added to the input directive. For example ```