[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo Crtl+C -> Ctrl+C #5685

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,7 @@ v0.8.6
* Exits after concatenating normal files which have a finite size
* Continues to run for special files which do not have a size,
such as ``/dev/random``
* Is interruptable in all cases with Crtl-C.
* Is interruptable in all cases with Ctrl-C.
* Callable aliases were not properly raising a ``CalledProcessError`` when they
returned a non-zero exist status when ``$RAISE_SUBPROC_ERROR = True``. This has
been fixed.
Expand Down Expand Up @@ -4463,7 +4463,7 @@ v0.5.0
* Fixed many PEP8 violations that had gone unnoticed
* Fix failure to detect an Anaconda python distribution if the python was install from the conda-forge channel.
* current_branch will try and locate the vc binary once
* May now Crtl-C out of an infinite loop with a subprocess, such as
* May now Ctrl-C out of an infinite loop with a subprocess, such as
```while True: sleep 1``.
* Fix for stdin redirects.
* Backgrounding works with ``$XONSH_STORE_STDOUT``
Expand Down
2 changes: 1 addition & 1 deletion docs/aliases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ independent of the setting of the $AUTO_CONTINUE option.
``EOF``, ``exit``, and ``quit``
===================================
The commands ``EOF``, ``exit``, and ``quit`` all alias the same action, which is to
leave xonsh in a safe manner. Typing ``Crtl-d`` is the same as typing ``EOF`` and
leave xonsh in a safe manner. Typing ``Ctrl-d`` is the same as typing ``EOF`` and
pressing enter.


Expand Down
2 changes: 1 addition & 1 deletion docs/xonshrc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ initializes your personal run control file (usually at ``~/.xonshrc``). To invo
.. code-block:: xonshcon

>>> xonfig web
Web config started at 'http://localhost:8421'. Hit Crtl+C to stop.
Web config started at 'http://localhost:8421'. Hit Ctrl+C to stop.
127.0.0.1 - - [23/Aug/2020 15:04:39] "GET / HTTP/1.1" 200 -

This will open your default browser on a page served from a local server. You can exit the server by typing ``Ctrl+c`` at any time.
Expand Down
2 changes: 1 addition & 1 deletion xonsh/webconfig/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def bind_server_to(

httpd = cls(("", port), handler_cls)
url = f"http://localhost:{port}"
print(f"Web config started at '{url}'. Hit Crtl+C to stop.")
print(f"Web config started at '{url}'. Hit Ctrl+C to stop.")
if browser:
import webbrowser

Expand Down
Loading