Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/keyframes_general.c4
-rw-r--r--source/blender/editors/asset/intern/asset_indexer.cc4
-rw-r--r--source/blender/editors/asset/intern/asset_library_reference_enum.cc2
3 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c
index 6a0122f4dc4..03862405e75 100644
--- a/source/blender/editors/animation/keyframes_general.c
+++ b/source/blender/editors/animation/keyframes_general.c
@@ -320,8 +320,8 @@ void clean_fcurve(struct bAnimContext *ac, bAnimListElem *ale, float thresh, boo
/** Find the first segment of consecutive selected curve points, starting from \a start_index.
* Keys that have BEZT_FLAG_IGNORE_TAG set are treated as unselected.
- * \param r_segment_start_idx returns the start index of the segment.
- * \param r_segment_len returns the number of curve points in the segment.
+ * \param r_segment_start_idx: returns the start index of the segment.
+ * \param r_segment_len: returns the number of curve points in the segment.
* \return whether such a segment was found or not.*/
static bool find_fcurve_segment(FCurve *fcu,
const int start_index,
diff --git a/source/blender/editors/asset/intern/asset_indexer.cc b/source/blender/editors/asset/intern/asset_indexer.cc
index 52b5df14c9f..43951b4b714 100644
--- a/source/blender/editors/asset/intern/asset_indexer.cc
+++ b/source/blender/editors/asset/intern/asset_indexer.cc
@@ -509,12 +509,12 @@ struct AssetLibraryIndex {
/**
* Instance of this class represents the contents of an asset index file.
*
- * /code
+ * \code
* {
* "version": {version},
* "entries": ...
* }
- * /endcode
+ * \endcode
*/
struct AssetIndex {
/**
diff --git a/source/blender/editors/asset/intern/asset_library_reference_enum.cc b/source/blender/editors/asset/intern/asset_library_reference_enum.cc
index 102b2a97859..2ea01ecd343 100644
--- a/source/blender/editors/asset/intern/asset_library_reference_enum.cc
+++ b/source/blender/editors/asset/intern/asset_library_reference_enum.cc
@@ -99,7 +99,7 @@ AssetLibraryReference ED_asset_library_reference_from_enum_value(int value)
* Since this is meant for UI display, skips non-displayable libraries, that is, libraries with an
* empty name or path.
*
- * \param include_local_library whether to include the "Current File" library or not.
+ * \param include_local_library: Whether to include the "Current File" library or not.
*/
const EnumPropertyItem *ED_asset_library_reference_to_rna_enum_itemf(
const bool include_local_library)