Skip to content

Commit

Permalink
Fix spell check (#459)
Browse files Browse the repository at this point in the history
* Refs #17130: fix spell check

Signed-off-by: JLBuenoLopez-eProsima <[email protected]>

* Refs #17130: fix spelling

Signed-off-by: JLBuenoLopez-eProsima <[email protected]>

* Refs #17130: apply review suggestion

Signed-off-by: JLBuenoLopez-eProsima <[email protected]>

---------

Signed-off-by: JLBuenoLopez-eProsima <[email protected]>
  • Loading branch information
JLBuenoLopez authored Feb 8, 2023
1 parent 7be2678 commit bb1a7b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ set(CPACK_COMPONENT_EXAMPLES_DESCRIPTION
"eProsima Fast DDS doxygen documetation")
set(CPACK_COMPONENTS_ALL ${CPACK_COMPONENTS_ALL} doxygen)

####################################################################################################
# Find Sphinx
####################################################################################################
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/code/cmake" ${CMAKE_MODULE_PATH})
find_package(Sphinx REQUIRED)

####################################################################################################
# Compile code used in documentation
Expand All @@ -101,15 +106,9 @@ endif()
####################################################################################################
# Build Sphinx documentation
####################################################################################################

# Find sphinx
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/code/cmake" ${CMAKE_MODULE_PATH})
find_package(Sphinx REQUIRED)

set(SPHINX_SOURCE "${CMAKE_SOURCE_DIR}/docs")

# It is possible to build and run tests without generating the documentation output. This saves time
# while developing, since generating the documentation from the RSTs takes quite some time.
set(SPHINX_SOURCE "${CMAKE_SOURCE_DIR}/docs")
option(BUILD_DOCUMENTATION "Generate documentation" ON)
if (BUILD_DOCUMENTATION)
# Check there is Python bindings accessible and configure sphinx depending on that.
Expand Down
2 changes: 1 addition & 1 deletion docs/fastdds/use_cases/request_reply/request_reply.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The DDS communication schema will be:
[Reply DataWriter] --> [Reply DataReader] : Reply Topic

The key for making *Request-Reply* work is relating the Request with the Reply in the client's side.
*Fast DDS* API provides |SampleIdentity-api| to achive this.
*Fast DDS* API provides |SampleIdentity-api| to achieve this.

A full example can be found in `Fast DDS repository`_.

Expand Down

0 comments on commit bb1a7b2

Please sign in to comment.