Update comment for this transformer

Remove extra word and add link to Wikipedia article
This commit is contained in:
Anna Winkler 2022-03-22 17:17:56 -06:00 committed by GitHub
parent 20e9d8e28c
commit 4ca508294c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
package terraform
// TransitiveReductionTransformer is a GraphTransformer that performs
// TransitiveReductionTransformer is a GraphTransformer that
// finds the transitive reduction of the graph. For a definition of
// transitive reduction, see Wikipedia.
// transitive reduction, see [Wikipedia](https://en.wikipedia.org/wiki/Transitive_reduction).
type TransitiveReductionTransformer struct{}
func (t *TransitiveReductionTransformer) Transform(g *Graph) error {