Skip to content

Commit 090f8fa

Browse files
authored
Merge pull request #169 from codeofhearts/patch-1
Remove extra space before comma
2 parents 8aa80e5 + 0f11591 commit 090f8fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pages/docs/execute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Soufflé permits facts to be sourced from tab-separated input files to separ
1212
.decl my_relation(a:number,b:number)
1313
.input my_relation
1414
```
15-
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 ```<fact-dir>``` with the option ```-F <fact-dir>```. Note that there is an exception if a relation is an input relation and is declared in an instantiation of a [component](components).
15+
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 ```<fact-dir>``` with the option ```-F <fact-dir>```. Note that there is an exception if a relation is an input relation and is declared in an instantiation of a [component](components).
1616

1717
If more precise control over file location is needed, more options can be added to the input directive. For example
1818
```

0 commit comments

Comments
 (0)