Skip to content

Commit

Permalink
✏️ Documentation spelling fixes (#4497)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardsondev authored Apr 24, 2022
1 parent 76e87ba commit 64c21ba
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/api/datamodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ Permission record
* - ``dangerous``
- 1
- boolean
- Whether the permission should be considered dangerous due to a high reponsibility (true) or not (false).
- Whether the permission should be considered dangerous due to a high responsibility (true) or not (false).
* - ``default_groups``
- 1
- List of string
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration/config_yaml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ Use the following settings to enable or disable OctoPrint features:
# whether G90/G91 also influence absolute/relative mode of extruders
g90InfluencesExtruder: false
# Replace all special characters and spaces with text equivalent to make them univerally compatible.
# Replace all special characters and spaces with text equivalent to make them universally compatible.
# Most OS filesystems work fine with unicode characters, but just in case you can revert to the
# older behaviour by setting this to true.
enforceReallyUniversalFilenames: false
Expand Down
2 changes: 1 addition & 1 deletion docs/development/virtual_printer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ There many configuration options via ``config.yaml`` for the virtual printer tha
# Enable virtual EEPROM
# If enabled, a file `eeprom.json` will be created in the plugin data folder
# to enable settings persistence across connections. Enables M500/1/2/4 commmands
# to enable settings persistence across connections. Enables M500/1/2/4 commands
# And a selection of other settings commands. Responses modeled on Marlin 2.0
enable_eeprom: true
Expand Down
2 changes: 1 addition & 1 deletion docs/features/accesscontrol.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Example: Your PC has an IP address of ``192.168.23.42`` and a subnet mask of
The easy way: Using the OctoPrint-AutoLoginConfig plugin
........................................................

The easist way to configure AutoLogin is to install the
The easiest way to configure AutoLogin is to install the
`OctoPrint-AutoLoginConfig plugin <https://plugins.octoprint.org/plugins/autologin_config/>`_
via the plugin manager.

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/hooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ octoprint.timelapse.capture.post
Perform specific actions after capturing a timelapse frame.

``filename`` will be the path of the frame that should have been saved.
``sucesss`` indicates whether the capture was successful or not.
``success`` indicates whether the capture was successful or not.

:param str filename: The path of the frame that should have been saved.
:param boolean success: Indicates whether the capture was successful or not.
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/python3_migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ As a summary, follow this checklist to migrate your plugin to be compatible to b
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
* Thorougly test your plugin under Python 3. Pay special attention to any kind of string handling issues, integer
* Thoroughly test your plugin under Python 3. Pay special attention to any kind of string handling issues, integer
division, relative imports from your plugin package and how the results of ``map``, ``filter`` and ``zip`` are
used in your code, as those have proven to be the biggest issues during past migrations.
* Once everything works under both Python versions and you've prepared a new release of your plugin (don't forget to
Expand Down

0 comments on commit 64c21ba

Please sign in to comment.