summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorYunjian Wang <wangyunjian@huawei.com>2021-07-03 16:25:22 +0800
committerBen Pfaff <blp@ovn.org>2021-07-06 15:40:03 -0700
commit00c1bce13a3bd9a6e26e9479463c8ff525485ef8 (patch)
tree62f945f68e05184a3be10b7f10e83b31d86f9a6b /Documentation
parent780b2bde80c86526daf9f93e33687b5a9b23f737 (diff)
downloadopenvswitch-00c1bce13a3bd9a6e26e9479463c8ff525485ef8.tar.gz
docs: fix wrong quote
Remove the coma character by using ' or " character. Signed-off-by: Yunjian Wang <wangyunjian@huawei.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/internals/charter.rst14
-rw-r--r--Documentation/internals/contributing/submitting-patches.rst4
-rw-r--r--Documentation/topics/windows.rst4
-rw-r--r--Documentation/tutorials/ovs-conntrack.rst2
4 files changed, 12 insertions, 12 deletions
diff --git a/Documentation/internals/charter.rst b/Documentation/internals/charter.rst
index f8e06e47f..a8b09e929 100644
--- a/Documentation/internals/charter.rst
+++ b/Documentation/internals/charter.rst
@@ -3,7 +3,7 @@ The Linux Foundation Open vSwitch Project Charter
Effective August 9, 2016
-1. Mission of Open vSwitch Project (“OVS”).
+1. Mission of Open vSwitch Project ("OVS").
The mission of OVS is to:
@@ -17,7 +17,7 @@ Effective August 9, 2016
neutral home for community assets, infrastructure, meetings,
events and collaborative discussions.
-2. Technical Steering Committee (“TSC”)
+2. Technical Steering Committee ("TSC")
a. A TSC shall be composed of the Committers for OVS. The list of Committers
on the TSC are available at :doc:`/internals/maintainers`.
@@ -29,7 +29,7 @@ Effective August 9, 2016
to the OVS codebase.
ii. Committers: Contributors who have the ability to commit
- directly to a project’s main branch or repository on an OVS
+ directly to a project's main branch or repository on an OVS
project.
c. Participation in as a Contributor and/or Committer is open to
@@ -54,7 +54,7 @@ Effective August 9, 2016
i. coordinating the technical direction of OVS;
ii. approving project proposals (including, but not limited to,
- incubation, deprecation and changes to a project’s charter
+ incubation, deprecation and changes to a project's charter
or scope);
iii. creating sub-committees or working groups to focus on
@@ -138,8 +138,8 @@ Effective August 9, 2016
c. A General & Administrative (G&A) fee will be applied by the
Linux Foundation to funds raised to cover Finance, Accounting,
- and operations. The G&A fee shall equal 9% of OVS’s first
- $1,000,000 of gross receipts and 6% of OVS’s gross receipts over
+ and operations. The G&A fee shall equal 9% of OVS's first
+ $1,000,000 of gross receipts and 6% of OVS's gross receipts over
$1,000,000.
d. Under no circumstances shall The Linux Foundation be expected or
@@ -187,7 +187,7 @@ Effective August 9, 2016
d. For any new project source code, if an alternative inbound or
outbound license is required for compliance with the license for
a leveraged open source project (e.g. GPLv2 for Linux kernel) or
- is otherwise required to achieve OVS’s mission, the TSC may
+ is otherwise required to achieve OVS's mission, the TSC may
approve the use of an alternative license for specific inbound
or outbound contributions on an exception basis. Any exceptions
must be approved by a majority vote of the entire TSC and must
diff --git a/Documentation/internals/contributing/submitting-patches.rst b/Documentation/internals/contributing/submitting-patches.rst
index 4a6780371..9d7189827 100644
--- a/Documentation/internals/contributing/submitting-patches.rst
+++ b/Documentation/internals/contributing/submitting-patches.rst
@@ -295,10 +295,10 @@ Examples of common tags follow.
See ``Bug:``.
-``Fixes: 63bc9fb1c69f (“packets: Reorder CS_* flags to remove gap.”)``
+``Fixes: 63bc9fb1c69f ("packets: Reorder CS_* flags to remove gap.")``
If you would like to record which commit introduced a bug being fixed,
- you may do that with a “Fixes” header. This assists in determining
+ you may do that with a "Fixes" header. This assists in determining
which OVS releases have the bug, so the patch can be applied to all
affected versions. The easiest way to generate the header in the
proper format is with this git command. This command also CCs the
diff --git a/Documentation/topics/windows.rst b/Documentation/topics/windows.rst
index be6e2861e..c5b34c85f 100644
--- a/Documentation/topics/windows.rst
+++ b/Documentation/topics/windows.rst
@@ -38,7 +38,7 @@ the overall design.
Background Info
---------------
-Microsoft’s hypervisor solution - Hyper-V [1]_ implements a virtual switch
+Microsoft's hypervisor solution - Hyper-V [1]_ implements a virtual switch
that is extensible and provides opportunities for other vendors to implement
functional extensions [2]_. The extensions need to be implemented as NDIS
drivers that bind within the extensible switch driver stack provided. The
@@ -294,7 +294,7 @@ Port Management
As explained above, we hook onto the management callback functions in the NDIS
interface to know when a port is added/connected to the Hyper-V switch. We use
these callbacks to initialize the port related data structures in OVS. Also,
-some of the ports are tunnel ports that don’t exist on the Hyper-V switch and
+some of the ports are tunnel ports that don't exist on the Hyper-V switch and
get added from OVS userspace.
In order to identify a Hyper-V port, we use the value of 'FriendlyName' field
diff --git a/Documentation/tutorials/ovs-conntrack.rst b/Documentation/tutorials/ovs-conntrack.rst
index 2d94054ea..e8a58c4eb 100644
--- a/Documentation/tutorials/ovs-conntrack.rst
+++ b/Documentation/tutorials/ovs-conntrack.rst
@@ -35,7 +35,7 @@ to match on the TCP segments from connection setup to connection tear down.
It will use OVS with the Linux kernel module as the datapath for this
tutorial. (The datapath that utilizes the openvswitch kernel module to do
the packet processing in the Linux kernel)
-It was tested with the “master” branch of Open vSwitch.
+It was tested with the "master" branch of Open vSwitch.
Definitions
-----------