Skip to content

Commit 0d9acc8

Browse files
committed
Don't code-case "dry-types" gem name
Despite it being (somewhat unconventionally) downcased, this is proper noun and not a piece of code, so we shouldn't show it as such.
1 parent 2b6db85 commit 0d9acc8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docsite/source/extensions.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sections:
77
- monads
88
---
99

10-
`dry-types` can be extended with extension. Those extensions are loaded with `Dry::Types.load_extensions`.
10+
dry-types can be extended with extension. Those extensions are loaded with `Dry::Types.load_extensions`.
1111

1212
Available extensions:
1313

docsite/source/index.html.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sections:
2020
- extensions
2121
---
2222

23-
`dry-types` is a simple and extendable type system for Ruby; useful for value coercions, applying constraints, defining complex structs or value objects and more. It was created as a successor to [Virtus](https://github.com/solnic/virtus).
23+
dry-types is a simple and extendable type system for Ruby; useful for value coercions, applying constraints, defining complex structs or value objects and more. It was created as a successor to [Virtus](https://github.com/solnic/virtus).
2424

2525
### Example usage
2626

@@ -140,7 +140,7 @@ Types::Strict::String[10000]
140140

141141
### Use cases
142142

143-
`dry-types` is suitable for many use-cases, for example:
143+
dry-types is suitable for many use-cases, for example:
144144

145145
* Value coercions
146146
* Processing arrays
@@ -150,7 +150,7 @@ Types::Strict::String[10000]
150150

151151
### Other gems using dry-types
152152

153-
`dry-types` is often used as a low-level abstraction. The following gems use it already:
153+
dry-types is often used as a low-level abstraction. The following gems use it already:
154154

155155
* [dry-struct](/gems/dry-struct)
156156
* [dry-initializer](/gems/dry-initializer)

docsite/source/sum.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ order: 7
77

88
You can specify sum types using `|` operator, it is an explicit way of defining what the valid types of a value are.
99

10-
For example `dry-types` defines the `Bool` type which is a sum consisting of the `True` and `False` types, expressed as `Types::True | Types::False`.
10+
For example dry-types defines the `Bool` type which is a sum consisting of the `True` and `False` types, expressed as `Types::True | Types::False`.
1111

1212
Another common case is defining that something can be either `nil` or something else:
1313

0 commit comments

Comments
 (0)