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 doc formatting #285

Merged
merged 1 commit into from
Sep 16, 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
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down
4 changes: 2 additions & 2 deletions docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ Limitations
Requirements
------------

* Python 3, with sufficiently recent versions of `pip` and `setuptools`
* Python 3, with sufficiently recent versions of ``pip`` and ``setuptools``
* Mock (for runing unit tests).
* `qemu` for running integration tests.
* ``qemu`` for running integration tests.
4 changes: 2 additions & 2 deletions docs/query.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ Syntax is very simmilar to a SQL query.

Above code demonstrates how to select ``name``, ``disabled`` fields where each interface is disabled
and ``name`` is equal to one of ``ether2``, ``wlan-lan``.
If you do not specify any logical operation within `where()`, them it defaults to `And()`.
Above example can be rewritten using `In` operator.
If you do not specify any logical operation within ``where()``, them it defaults to `And()`.
Above example can be rewritten using ``In`` operator.

.. code-block:: python

Expand Down