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

Update docs/latest URLs to simply be docs/ #25950

Merged
merged 3 commits into from
Oct 23, 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
2 changes: 1 addition & 1 deletion compiler/AST/symbol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ const char* Symbol::getUnstableMsg() const {
// When printing the deprecation message to the console we typically
// want to filter out inline markup used for Sphinx (which is useful
// for when generating the docs). See:
// https://chapel-lang.org/docs/latest/tools/chpldoc/chpldoc.html#inline-markup-2
// https://chapel-lang.org/docs/tools/chpldoc/chpldoc.html#inline-markup-2
// for information on the markup.
const char* Symbol::getSanitizedMsg(std::string msg) const {
return astr(chpl::removeSphinxMarkup(msg));
Expand Down
2 changes: 1 addition & 1 deletion frontend/include/chpl/util/filtering.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace chpl

/*
Removes the Sphinx inline markup for printing messages to the console.
See https://chapel-lang.org/docs/latest/tools/chpldoc/chpldoc.html#inline-markup-2
See https://chapel-lang.org/docs/tools/chpldoc/chpldoc.html#inline-markup-2
*/
std::string removeSphinxMarkup(const std::string& msg);

Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/util/filtering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace chpl {
namespace {
std::string buildSphinxMarkupRegexp() {
// See documentation on inline Sphinx markup here:
// https://chapel-lang.org/docs/latest/tools/chpldoc/chpldoc.html#inline-markup-2
// https://chapel-lang.org/docs/tools/chpldoc/chpldoc.html#inline-markup-2
// There are some details involved in this, but the main idea is to match
// strings of the form:
//
Expand Down
4 changes: 2 additions & 2 deletions test/deprecated-keyword/messageFiltering.chpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// See: https://chapel-lang.org/docs/latest/tools/chpldoc/chpldoc.html#inline-markup-2
// and: https://chapel-lang.org/docs/latest/tools/chpldoc/chpldoc.html#paragraph-level-markup
// See: https://chapel-lang.org/docs/tools/chpldoc/chpldoc.html#inline-markup-2
// and: https://chapel-lang.org/docs/tools/chpldoc/chpldoc.html#paragraph-level-markup

// No filtering should be applied:
@deprecated(notes="--- No filtering should be applied: ---")
Expand Down
2 changes: 1 addition & 1 deletion third-party/llvm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ unset:
@echo " 2) 'bundled' to build with the LLVM packaged in the third-party directory"
@echo " 3) 'system' to use a pre-installed system-wide LLVM"
@echo " Currently supported LLVM versions are: $(CHPL_LLVM_SUPPORTED_VERSIONS)"
@echo "See: https://chapel-lang.org/docs/latest/usingchapel/chplenv.html#chpl-llvm"
@echo "See: https://chapel-lang.org/docs/usingchapel/chplenv.html#chpl-llvm"
@exit 1

FORCE:
Expand Down