We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Alg
1 parent 6ec8d5e commit ec69843Copy full SHA for ec69843
src/cubing/alg/Alg.ts
@@ -48,10 +48,10 @@ export function experimentalEnsureAlg(alg: FlexibleAlgSource): Alg {
48
}
49
50
/**
51
- * Alg is a class that encapsulated a structured alg. To create an alg from a string, use:
+ * Alg is a class that encapsulates a structured alg. To create an alg from a string, use:
52
*
53
* new Alg("R U R'"); // Convenient
54
- * Alg.fromString(dynamicString); // Recommended when handling dynamic input.
+ * Alg.fromString(dynamicString); // Recommended when user-provided string input.
55
56
* Once you have an Alg, you can call methods to transform it:
57
0 commit comments