Skip to content

Commit 5caa33c

Browse files
committed
Fix to fit new guidelines for snippets
1 parent 108ca7b commit 5caa33c

18 files changed

+25
-19
lines changed

snippets/ruby/array-manipulation/binary-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Binary Search
33
description: Searches for an element in a sorted array using binary search.
44
author: ACR1209
5-
tags: ruby,array,binary-search,search
5+
tags: array,binary-search,search
66
---
77

88
```rb

snippets/ruby/array-manipulation/chunk-array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Chunk Array
33
description: Splits an array into chunks of a specified size.
44
author: ACR1209
5-
tags: ruby,array,chunk,utility
5+
tags: array,chunk
66
---
77

88
```rb

snippets/ruby/array-manipulation/matrix-transpose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Matrix Transpose
33
description: Transposes a 2D matrix.
44
author: ACR1209
5-
tags: ruby,array,matrix,transpose
5+
tags: array,matrix,transpose
66
---
77

88
```ruby

snippets/ruby/basics/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Hello, World!
33
description: Prints Hello, World! to the terminal.
44
author: ACR1209
5-
tags: ruby,printing,hello-world,utility
5+
tags: printing,hello-world,utility
66
---
77

88
```rb

snippets/ruby/data-structures/binary-tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Binary Tree
33
description: Implements a basic binary tree with in-order traversal.
44
author: ACR1209
5-
tags: ruby,data structures,binary tree
5+
tags: data structures,binary tree
66
---
77

88
```rb

snippets/ruby/data-structures/doubly-linked-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Doubly Linked List
33
description: Implements a doubly linked list with node insertion and traversal.
44
author: ACR1209
5-
tags: ruby,data structures,linked list,doubly linked list
5+
tags: data structures,linked list,doubly linked list
66
---
77

88
```rb

snippets/ruby/data-structures/linked-list.md renamed to snippets/ruby/data-structures/singly-linked-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Singly Linked List
33
description: Implements a basic singly linked list with node insertion and traversal.
44
author: ACR1209
5-
tags: ruby,data structures,linked list
5+
tags: data structures,linked list
66
---
77

88
```rb

snippets/ruby/error-handling/custom-error.md renamed to snippets/ruby/error-handling/custom-error-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Custom Error Class
33
description: Defines and raises a custom error class in Ruby.
44
author: ACR1209
5-
tags: ruby,error handling,custom error
5+
tags: error handling,custom error
66
---
77

88
```rb

snippets/ruby/math-and-numbers/calculate-compound-interest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Calculate Compound Interest
33
description: Calculates compound interest for a given principal amount, rate, and time period.
44
author: ACR1209
55
contributors: axorax
6-
tags: ruby,math,compound interest,finance
6+
tags: math,compound interest,finance
77
---
88

99
```rb

snippets/ruby/math-and-numbers/calculate-factorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Calculate Factorial
33
description: Computes the factorial of a given integer.
44
author: ACR1209
5-
tags: ruby,math,factorial
5+
tags: math,factorial
66
---
77

88
```rb

0 commit comments

Comments
 (0)