Skip to content

Commit 9dd850d

Browse files
abhizerryzhyk
authored andcommitted
suggested fixes to docs
Signed-off-by: Abhinav Gyawali <22275402+abhizer@users.noreply.github.com>
1 parent 9823f23 commit 9dd850d

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

python/docs/examples.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Using Pandas DataFrames as Input / Output
55
*******************************************
66

77

8-
Working wth pandas DataFrames in Feldera is fairly straight forward.
98
You can use :meth:`.SQLContext.input_pandas` to connect a
109
DataFrame to a feldera table as the data source.
1110

python/docs/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Key Concepts
6565
- The second parameter here is :class:`.FelderaClient` that we created above.
6666

6767
* :meth:`.SQLContext.wait_for_completion`
68-
- Blocks this Feldera pipeline until completion. Normally this means until the EoF
68+
- Blocks this Feldera pipeline until completion. Normally this means until the end-of-file (EOF)
6969
has been reached for this input source.
7070

7171
- Takes a parameter ``shutdown``, when set shuts the pipeline down after completion.

python/feldera/enums.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,24 @@ class CompilationProfile(Enum):
77
"""
88

99
SERVER_DEFAULT = None
10-
"The compiler server default compilation profile."
10+
"""
11+
The compiler server default compilation profile.
12+
"""
1113

1214
DEV = "dev"
13-
"The development compilation profile."
15+
"""
16+
The development compilation profile.
17+
"""
1418

1519
UNOPTIMIZED = "unoptimized"
16-
"The unoptimized compilation profile."
20+
"""
21+
The unoptimized compilation profile.
22+
"""
1723

1824
OPTIMIZED = "optimized"
19-
"The optimized compilation profile, the default for this API."
25+
"""
26+
The optimized compilation profile, the default for this API.
27+
"""
2028

2129

2230
class BuildMode(Enum):

0 commit comments

Comments
 (0)