Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the ReadTheDocs link to Doxygen #919

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
# built documents.
#
# The short X.Y version.
version = u'6.0'
version = u'2024.07'
# The full version, including alpha/beta/rc tags.
release = u'6.0.0'
release = u'2024.07.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PROJECT_NUMBER =
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.

OUTPUT_DIRECTORY = ./_build/html/doxygen
OUTPUT_DIRECTORY = ../_readthedocs/html/doxygen

# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4097 sub-directories (in 2 levels) under the output directory of each output
Expand Down
2 changes: 1 addition & 1 deletion src/umpire/alloc/SyclMallocAllocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace alloc {
*/
struct SyclMallocAllocator {
/*!
* \Brief Allocate bytes of memory using SYCL malloc
* \brief Allocate bytes of memory using SYCL malloc
*
* \param size Number of bytes to allocate.
* \param queue_t SYCL queue for providing information on device and context
Expand Down
2 changes: 1 addition & 1 deletion src/umpire/alloc/SyclPinnedAllocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace alloc {
*/
struct SyclPinnedAllocator {
/*!
* \Brief Allocate bytes of memory using SYCL malloc_host
* \brief Allocate bytes of memory using SYCL malloc_host
*
* \param size Number of bytes to allocate.
* \param queue_t SYCL queue for providing information on device and context
Expand Down
Loading