You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: intro.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,15 @@ When developing programs, we have to solve many problems. A program can be viewe
7
7
8
8
There are many problems that share the same form. Due to the fact that Rust is not object-oriented design patterns vary with respect to other object-oriented programming languages. While the details are different, since they have the same form they can be solved using the same fundamental methods.
9
9
10
-
[Design patterns](patterns/README.md) are methods to solve common problems when writing software.
10
+
[Design patterns](./patterns/README.md) are methods to solve common problems when writing software.
11
11
12
-
[Anti-patterns](anti_patterns/README.md) are methods to solve these same common problems.
12
+
[Anti-patterns](./anti_patterns/README.md) are methods to solve these same common problems.
13
13
14
14
However, while design patterns give us benefits, anti-patterns create more problems.
15
15
16
-
[Idioms](idioms/README.md) are guidelines to follow when coding. They are social norms of the community.
16
+
[Idioms](./idioms/README.md) are guidelines to follow when coding. They are social norms of the community.
17
17
You can break them, but if you do you should have a good reason for it.
18
18
19
-
[Refactoring](refactoring/README.md) is the process by which you convert code that works, but is hard to understand, into code that works and is easy to understand.
19
+
[Refactoring](./refactoring/README.md) is the process by which you convert code that works, but is hard to understand, into code that works and is easy to understand.
20
20
21
21
TODO: Mention why Rust is a bit special - functional elements, type system, borrow checker
0 commit comments