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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ class MyExperiment
84
84
end
85
85
```
86
86
87
-
When `Scientist::Experiment` is included in a class, it automatically sets it as the default implementation via `Scientist::Experiment.set_default`. This `set_default` call is is skipped if you include `Scientist::Experiment` in a module.
87
+
When `Scientist::Experiment` is included in a class, it automatically sets it as the default implementation via `Scientist::Experiment.set_default`. This `set_default` call is skipped if you include `Scientist::Experiment` in a module.
88
88
89
89
Now calls to the `science` helper will load instances of `MyExperiment`.
90
90
@@ -129,7 +129,7 @@ class MyWidget
129
129
control.class==ArgumentError&&
130
130
candidate.class==ArgumentError&&
131
131
control.message.start_with?("Input has invalid characters") &&
132
-
candidate.message.star_with?("Invalid characters in input")
132
+
candidate.message.start_with?("Invalid characters in input")
0 commit comments