Skip to content

Commit 747f83a

Browse files
authored
Fix typo introduced during refactoring (#6876)
Seems like the word got cut off in 3fbee7a ## 📝 Summary I found a cut off word in a comment and fixed it. ## 🔍 Description of Changes I found a cut off word in a comment, wondered if while being cut off, some other important content got cut off along with it. Doesn't seem like it, but I try to fix things when I see them even if it is probably not utterly important. ## 📋 Checklist No code changed, just comment. - [x] I have read the [contributor guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md). - [ ] For large changes, or changes that affect the public API: this change was discussed or approved through an issue, on [Discord](https://marimo.io/discord?ref=pr), or the community [discussions](https://github.com/marimo-team/marimo/discussions) (Please provide a link if applicable). - [ ] I have added tests for the changes made. - [ ] I have run the code and verified that it works as expected.
1 parent 4d1f2a8 commit 747f83a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marimo/_server/sessions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def __init__(
194194
def start_kernel(self) -> None:
195195
# We use a process in edit mode so that we can interrupt the app
196196
# with a SIGINT; we don't mind the additional memory consumption,
197-
# since there's only one client sess
197+
# since there's only one client session
198198
is_edit_mode = self.mode == SessionMode.EDIT
199199
listener = None
200200
if is_edit_mode:

0 commit comments

Comments
 (0)