Fixed typos

This commit is contained in:
Jason Mehring 2014-12-18 08:36:09 -05:00 committed by Wojtek Porczyk
parent 6d6d6ad7ff
commit be3e888bbe
8 changed files with 22 additions and 22 deletions

View File

@ -168,7 +168,7 @@ class QubesVm(object):
"func": lambda value:
datetime.datetime.fromtimestamp(int(value)) if value
else None },
##### Internal attributes - will be overriden in __init__ regardless of args
##### Internal attributes - will be overridden in __init__ regardless of args
"config_file_template": {
"func": lambda x: system_path["config_template_pv"] },
"icon_path": {

View File

@ -181,7 +181,7 @@ guiagent_installed
Accepted values: ``True``, ``False``
This HVM have gui agent installed. This option disables full screen GUI
virtualization and enables per-window seemless GUI mode. This option will
virtualization and enables per-window seamless GUI mode. This option will
be automatically turned on during Qubes Windows Tools installation, but if
you install qubes gui agent in some other OS, you need to turn this option
on manually. You can turn this option off to troubleshoot some early HVM OS

View File

@ -17,7 +17,7 @@ Options
.. option:: --force
Do not prompt for comfirmation
Do not prompt for confirmation
Authors
=======

View File

@ -36,7 +36,7 @@ Supported services
==================
This list can be incomplete as VM can implement any additional service without
knowlege of qubes-core code.
knowledge of qubes-core code.
meminfo-writer
Default: enabled everywhere excluding NetVM
@ -47,7 +47,7 @@ meminfo-writer
.. note::
This service is enforced to be set by dom0 code. If you try to
remove it (reset to defult state), will be recreated with the rule: enabled
remove it (reset to default state), will be recreated with the rule: enabled
if VM have no PCI devices assigned, otherwise disabled.
qubes-dvm

View File

@ -24,7 +24,7 @@
import logging
import string
# This are only defaults - can be overriden by QMemmanServer with values from
# This are only defaults - can be overridden by QMemmanServer with values from
# config file
CACHE_FACTOR = 1.3
MIN_PREFMEM = 200*1024*1024

View File

@ -3,8 +3,8 @@
'''Documentation helpers
This module contains classes and functions which help to mainain documentation,
particulary our custom Sphinx extension.
This module contains classes and functions which help to maintain documentation,
particularly our custom Sphinx extension.
'''
@ -44,7 +44,7 @@ def ticket(name, rawtext, text, lineno, inliner, options={}, content=[]):
:param str name: The role name used in the document
:param str rawtext: The entire markup snippet, with role
:param str text: The text marked with the role
:param int lineno: The line noumber where rawtext appearn in the input
:param int lineno: The line number where rawtext appears in the input
:param docutils.parsers.rst.states.Inliner inliner: The inliner instance that called this function
:param options: Directive options for customisation
:param content: The directive content for customisation

View File

@ -142,7 +142,7 @@ class BaseVM(qubes.PropertyHolder):
:param xml: xml node from which to deserialise
:type xml: :py:class:`lxml.etree._Element` or :py:obj:`None`
This class is responsible for serialising and deserialising machines and
This class is responsible for serializing and deserialising machines and
provides basic framework. It contains no management logic. For that, see
:py:class:`qubes.vm.qubesvm.QubesVM`.
'''

View File

@ -34,7 +34,7 @@ def main():
usage = "usage: %prog [options] <template-name>"
parser = OptionParser (usage)
parser.add_option ("--force", action="store_true", dest="force", default=False,
help="Do not prompt for comfirmation")
help="Do not prompt for confirmation")
(options, args) = parser.parse_args ()
if (len (args) != 1):