Skip to content
Open
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 doc/developer-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Not OK (used plenty in the current source, but not picked up):
//
```

A full list of comment syntaxes picked up by doxygen can be found at http://www.stack.nl/~dimitri/doxygen/manual/docblocks.html,
A full list of comment syntaxes picked up by doxygen can be found at https://www.doxygen.nl/manual/docblocks.html
but if possible use one of the above styles.
Comment on lines +107 to 108
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Wrap the bare URL to satisfy MD034.
This line violates no-bare-urls; convert to a markdown link.

✅ Proposed fix
-A full list of comment syntaxes picked up by doxygen can be found at https://www.doxygen.nl/manual/docblocks.html
+A full list of comment syntaxes picked up by doxygen can be found at
+[the Doxygen docblocks reference](https://www.doxygen.nl/manual/docblocks.html).
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
A full list of comment syntaxes picked up by doxygen can be found at https://www.doxygen.nl/manual/docblocks.html
but if possible use one of the above styles.
A full list of comment syntaxes picked up by doxygen can be found at
[the Doxygen docblocks reference](https://www.doxygen.nl/manual/docblocks.html).
but if possible use one of the above styles.
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

107-107: Bare URL used

(MD034, no-bare-urls)

🤖 Prompt for AI Agents
In `@doc/developer-notes.md` around lines 107 - 108, Replace the bare URL in the
sentence "A full list of comment syntaxes picked up by doxygen can be found at
https://www.doxygen.nl/manual/docblocks.html" with a markdown link (e.g., "A
full list of comment syntaxes picked up by doxygen can be found at [Doxygen
docblocks](https://www.doxygen.nl/manual/docblocks.html)") so the file no longer
violates MD034; update the doc string accordingly wherever that bare URL
appears.


Development tips and tricks
Expand Down
2 changes: 1 addition & 1 deletion src/immer/detail/type_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ template <typename T, typename = void>
struct is_iterator : std::false_type
{};

// See http://en.cppreference.com/w/cpp/concept/Iterator
// See https://en.cppreference.com/w/cpp/iterator.html
template <typename T>
struct is_iterator<
T,
Expand Down