Skip to content

Commit c3952ef

Browse files
authored
Fix some typos (#1176)
* change <user> to $USER Signed-off-by: Raül <raulojeda@eprosima.com> * some typos fixed Signed-off-by: Raül <raulojeda@eprosima.com> * shorten line length Signed-off-by: Raül <raulojeda@eprosima.com> --------- Signed-off-by: Raül <raulojeda@eprosima.com>
1 parent a49cd8b commit c3952ef

12 files changed

Lines changed: 21 additions & 18 deletions

File tree

docs/fastdds/dds_layer/core/policy/eprosimaExtensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Compatibility Rule
181181
""""""""""""""""""
182182

183183
To maintain the compatibility between DisablePositiveACKsQosPolicy in DataReaders and DataWriters, the DataReader
184-
cannot have this QoS enabled if the DataWriter have it disabled.
184+
cannot have this QoS enabled if the DataWriter has it disabled.
185185

186186
Table with the possible combinations:
187187

docs/fastdds/dds_layer/core/status/status.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ List of status data members:
205205
liveliness or a DataWriter that was considered not alive reasserts its
206206
liveliness.
207207
It decreases every time an active DataWriter becomes not alive, either
208-
because it failed to asserts its liveliness or because it was deleted for any reason.
208+
because it failed to assert its liveliness or because it was deleted for any reason.
209209

210210
* |LivelinessChangedStatus::not_alive_count-api|:
211211
Total number of matched DataWriters
@@ -575,7 +575,7 @@ List of status data members:
575575
Total cumulative count of missed deadlines for any instance written by the
576576
current DataWriter.
577577
As the deadline period applies to each instance of the Topic independently,
578-
the count will will be incremented by one for each instance for which data
578+
the count will be incremented by one for each instance for which data
579579
was not sent in the deadline period.
580580

581581
* |DeadlineMissedStatus::total_count_change-api|:

docs/fastdds/dds_layer/topic/fastddsgen/fastddsgen.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Output files
5151
Assuming the IDL file had the name *“Mytype”*, and none of the above options have been defined, these files are:
5252

5353
* MyType.hpp: Type definition.
54-
* MyTypePubSubType.cxx/.h: Serialization and deserialization source code for the data type.
54+
* MyTypePubSubType.cxx/.hpp: Serialization and deserialization source code for the data type.
5555
It also defines the |TopicDataType::getKey-api| member function of the :class:`MyTypePubSubType` class in case the
5656
topic implements keys (see :ref:`dds_layer_topic_keyed_data_types`).
5757
* MyTypeCdrAux.hpp/.ipp: Auxiliary methods required by Fast CDR for type encoding and decoding.

docs/fastdds/getting_started/simple_app/includes/dataType.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This must have generated the following files:
4343

4444
* HelloWorld.hpp: HelloWorld type definition.
4545
* HelloWorldPubSubTypes.cxx: Interface used by Fast DDS to support HelloWorld type.
46-
* HelloWorldPubSubTypes.h: Header file for HelloWorldPubSubTypes.cxx.
46+
* HelloWorldPubSubTypes.hpp: Header file for HelloWorldPubSubTypes.cxx.
4747
* HelloWorldCdrAux.ipp: Serialization and Deserialization code for the HelloWorld type.
4848
* HelloWorldCdrAux.hpp: Header file for HelloWorldCdrAux.ipp.
4949
* HelloWorldTypeObjectSupport.cxx: |TypeObject| registration code.

docs/fastdds/getting_started/simple_app/includes/dependencies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Import linked libraries and its dependencies
22
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33

44
The DDS application requires the Fast DDS and Fast CDR libraries.
5-
Depending on the installation procedure followed the process of making these libraries available for our DDS application
6-
will be slightly different.
5+
Depending on the installation procedure followed, the process of making these libraries available for our DDS
6+
application will be slightly different.
77

88
Installation from binaries and manual installation
99
""""""""""""""""""""""""""""""""""""""""""""""""""

docs/fastdds/getting_started/simple_app/includes/publisher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ the file.
2626
:lines: 15-18
2727

2828
Below are the includes of the C++ headers.
29-
The first one includes the HelloWorldPubSubTypes.h file with the serialization and deserialization functions of the
29+
The first one includes the HelloWorldPubSubTypes.hpp file with the serialization and deserialization functions of the
3030
data type that we have defined in the previous section.
3131

3232
.. literalinclude:: /../code/Examples/C++/DDSHelloWorld/src/HelloWorldPublisher.cpp

docs/fastdds/getting_started/simple_app/includes/workspace.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Subscriber application respectively.
2424
├── HelloWorldCdrAux.ipp
2525
├── HelloWorldPublisher.cpp
2626
├── HelloWorldPubSubTypes.cxx
27-
├── HelloWorldPubSubTypes.h
27+
├── HelloWorldPubSubTypes.hpp
2828
├── HelloWorldSubscriber.cpp
2929
├── HelloWorldTypeObjectSupport.cxx
3030
└── HelloWorldTypeObjectSupport.hpp

docs/fastdds/getting_started/simple_python_app/includes/dataType.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This must have generated the following files:
4545
* HelloWorld.hpp: HelloWorld C++ type definition.
4646
* HelloWorld.i: `SWIG`_ interface file for HelloWorld C++ type definition.
4747
* HelloWorldPubSubTypes.cxx: C++ interface used by Fast DDS to support HelloWorld type.
48-
* HelloWorldPubSubTypes.h: C++ header file for HelloWorldPubSubTypes.cxx.
48+
* HelloWorldPubSubTypes.hpp: C++ header file for HelloWorldPubSubTypes.cxx.
4949
* HelloWorldPubSubTypes.i: `SWIG`_ interface file for C++ Serialization and Deserialization code.
5050
* HelloWorldCdrAux.ipp: C++ serialization and deserialization code for the HelloWorld type.
5151
* HelloWorldCdrAux.hpp: C++ header file for HelloWorldCdrAux.ipp.

docs/fastdds/getting_started/simple_python_app/includes/dependencies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Import linked libraries and its dependencies
22
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33

44
The DDS application requires the Fast DDS, Fast CDR and Fast DDS Python bindings libraries.
5-
Depending on the installation procedure followed the process of making these libraries available for our DDS application
6-
will be slightly different.
5+
Depending on the installation procedure followed, the process of making these libraries available for our DDS
6+
application will be slightly different.
77

88
.. TODO Add when already python bindings are inside Fast-DDS
99
Installation from binaries and manual installation

docs/fastdds/getting_started/simple_python_app/includes/workspace.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Subscriber application respectively.
1818
├── HelloWorldCdrAux.hpp
1919
├── HelloWorldCdrAux.ipp
2020
├── HelloWorldPubSubTypes.cxx
21-
├── HelloWorldPubSubTypes.h
21+
├── HelloWorldPubSubTypes.hpp
2222
├── HelloWorldPubSubTypes.i
2323
├── HelloWorldPublisher.py
2424
├── HelloWorldSubscriber.py

0 commit comments

Comments
 (0)