Skip to content

Commit aebefde

Browse files
committed
Fixed all tags + type
1 parent 98ddffc commit aebefde

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

snippets/cpp/array-manipulation/filter-vector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: Filter Vector
33
Description: Filters a vector using a predicate function.
44
Author: majvax
5-
Tags: cpp,array,filter,utility,c++23
5+
Tags: array,filter,c++23
66
---
77

88
```cpp

snippets/cpp/array-manipulation/transform-vector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: Transform Vector
33
Description: Transforms a vector using a function.
44
Author: majvax
5-
Tags: cpp,array,transform,utility,,c++23
5+
Tags: array,transform,c++23
66
---
77

88
```cpp
@@ -22,5 +22,5 @@ auto transform(const std::vector<T>& vec, F&& transformer) {
2222
// Usage:
2323
std::vector<int> vec = {1, 2, 3, 4, 5};
2424
std::vector<int> transformed = transform(vec, [](int i){ return i * 2; });
25-
// transformed containes 2, 4, 6, 8, 10
25+
// transformed contains 2, 4, 6, 8, 10
2626
```

snippets/cpp/file-handling/find-files-recursive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: Find files
33
Description: Find all the files in a directory and subdirectories using a predicate function.
44
Author: majvax
5-
Tags: cpp,filesystem,file_search,c++17
5+
Tags: filesystem,file_search,c++17
66
---
77

88
```cpp

snippets/cpp/file-handling/find-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: Find files
33
Description: Find all the files in a directory using a predicate function.
44
Author: majvax
5-
Tags: cpp,filesystem,file_search
5+
Tags: filesystem,file_search,c++17
66
---
77

88
```cpp

snippets/cpp/file-handling/list-directories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: List Directories
33
Description: Lists all the directories in a path.
44
Author: majvax
5-
Tags: cpp,filesystem,directories,c++17
5+
Tags: filesystem,directories,c++17
66
---
77

88
```cpp

snippets/cpp/string-manipulation/filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Filter
33
description: Filter a string with a predicate function
44
author: majvax
5-
tags: cpp,string,utility,filtering,c++23
5+
tags: string,filtering,c++23
66
---
77

88
```cpp

snippets/cpp/string-manipulation/palindrome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Palindrome
33
description: Check if a string is a palindrome or not.
44
author: majvax
5-
tags: cpp,string,utility,c++23
5+
tags: string,c++23
66
---
77

88
```cpp

snippets/cpp/string-manipulation/reverse-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Reverse String
33
description: Reverses the characters in a string.
44
author: Vaibhav-kesarwani
5-
tags: cpp,array,reverse,utility
5+
tags: array,reverse,c++20
66
---
77

88
```cpp

snippets/cpp/string-manipulation/split-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Split String
33
description: Splits a string by a delimiter
44
author: saminjay
5-
tags: cpp,string,split,utility
5+
tags: string,split,c++23
66
---
77

88
```cpp

snippets/cpp/string-manipulation/transform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Transform
33
description: Transform a string with a function
44
author: majvax
5-
tags: cpp,string,utility,transform,c++23
5+
tags: string,transform,c++23
66
---
77

88
```cpp

0 commit comments

Comments
 (0)