Skip to content

Commit caa7bca

Browse files
committed
fix: fixes for frenglish speakers
1 parent e780743 commit caa7bca

File tree

21 files changed

+27
-28
lines changed

21 files changed

+27
-28
lines changed

docs/source/AdministratorGuide/Configuration/ConfReference/Resources/StorageElements/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Resources / StorageElements and StorageElementBases- Subsections
22
==================================================================
33

4-
All the storages elements available for the users are described in these subsections. Base Storage Elements, corresponding to abstract Storage Element, must be defined in the Resources/StorageElementBases section while other Storage Elements, like inherited and simple Storage Elements, must be configured in the Resources/StorageElement section. This information will be moved bellow the Sites section.
4+
All the storages elements available for the users are described in these subsections. Base Storage Elements, corresponding to abstract Storage Element, must be defined in the Resources/StorageElementBases section while other Storage Elements, like inherited and simple Storage Elements, must be configured in the Resources/StorageElement section. This information will be moved below the Sites section.
55

66
+---------------------------------------------+--------------------------------------------------+-----------------------------+
77
| **Name** | **Description** | **Example** |

docs/source/DeveloperGuide/Internals/Core/Serialization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ DEncode supports the following type:
4242
* datetime
4343
* dict
4444
* int
45-
* float (CAUTION, see bellow)
45+
* float (CAUTION, see below)
4646
* list
4747
* long
4848
* none

docs/source/DeveloperGuide/TornadoServices/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Service
3838

3939
Service returns to Client S_OK/S_ERROR encoded in JSON
4040

41-
Each service exposes only one route of the form ``System/Component`` with a ``POST`` handler. The semantic of the ``POST`` call is described bellow.
41+
Each service exposes only one route of the form ``System/Component`` with a ``POST`` handler. The semantic of the ``POST`` call is described below.
4242

4343
*********************************************************
4444
Important changes between DISET server and Tornado Server

docs/source/UserGuide/HowTo/DataManagement/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DataManagement
77

88
For an introduction about DataManagement concepts, please see the :ref:`introduction <dms-concepts>`
99

10-
All the commands mentionned bellow can accept several StorageElements and LFNs as parameters. Please use `--help` for more details.
10+
All the commands mentioned below can accept several StorageElements and LFNs as parameters. Please use `--help` for more details.
1111

1212
Basics
1313
======

src/DIRAC/Core/DISET/RequestHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def __RPCCallFunction(self, method, args):
276276
# Lock the method with Semaphore to avoid too many calls at the same time
277277
self.__lockManager.lock("RPC/%s" % method)
278278
# 18.02.19 WARNING CHRIS
279-
# The line bellow adds the current transportID to the message broker
279+
# The line below adds the current transportID to the message broker
280280
# First of all, I do not see why it is doing so.
281281
# Second, this affects only one every other socket, since the
282282
# message broker selects on that one, and in the meantime, many sockets

src/DIRAC/Core/DISET/private/BaseClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def __discoverExtraCredentials(self):
243243
* self.__extraCredentials
244244
-> if KW_EXTRA_CREDENTIALS in kwargs, we set it
245245
-> Otherwise, if we use the server certificate, we set it to VAL_EXTRA_CREDENTIALS_HOST
246-
-> If we have a delegation (see bellow), we set it to (delegatedDN, delegatedGroup)
246+
-> If we have a delegation (see below), we set it to (delegatedDN, delegatedGroup)
247247
-> otherwise it is an empty string
248248
* delegation:
249249
-> if KW_DELEGATED_DN in kwargs, or delegatedDN in threadConfig, put in in self.kwargs

src/DIRAC/Core/DISET/private/Transports/BaseTransport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ def latestServerRenewTime(self):
9797
def getConnectingCredentials(self):
9898
"""
9999
100-
:return: dictionnary with credentials
100+
:return: dictionary with credentials
101101
102-
Return empty dictionnary for plainTransport.
102+
Return empty dictionary for plainTransport.
103103
104104
In SSLTransport it contains (after the handshake):
105105

src/DIRAC/Core/Security/m2crypto/X509Chain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class X509Chain(object):
5151
* You are getting information about your peer during an SSL connection
5252
* You are delegating
5353
54-
Typical usages of X509Chain are illustrated bellow
54+
Typical usages of X509Chain are illustrated below
5555
5656
Loading a proxy from a file (this will load the chain and the key, assuming the key is in the same file)::
5757

src/DIRAC/Core/Security/m2crypto/asn1_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ def decodeVOMSExtension(m2cert):
159159
160160
:param m2cert: M2Crypto X509 object, a certificate
161161
162-
:returns: A dictionnary containing the following fields:
162+
:returns: A dictionary containing the following fields:
163163
164164
* notBefore: datetime.datetime
165165
* notAfter: datetime.datetime
166-
* attribute: (string). Comma separated list of VOMS tags presented as bellow
166+
* attribute: (string). Comma separated list of VOMS tags presented as below
167167
168168
"<tagName> = <tagValue> (<tagQualifier>)"
169169
Typically, the nickname will look like

src/DIRAC/Core/Security/test/x509TestUtilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
# What PyGSI and M2Crypto will print are PKCS8 format.
9999
# To go from RSA to generic key:
100100
# openssl pkcs8 -topk8 -nocrypt -in privkey.pem
101-
# Look for 'BEGIN RSA PRIVATE KEY' in the link bellow
101+
# Look for 'BEGIN RSA PRIVATE KEY' in the link below
102102
# https://tls.mbed.org/kb/cryptography/asn1-key-structures-in-der-and-pem
103103

104104
KEYCONTENTS_PKCS8 = {

0 commit comments

Comments
 (0)