From d0f7bf415822bed5ba36674f25e45fe1a1a6bb3b Mon Sep 17 00:00:00 2001 From: baseplate-admin <61817579+baseplate-admin@users.noreply.github.com> Date: Sun, 26 Dec 2021 23:27:57 +0600 Subject: [PATCH] Remove unnecessary colons --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d383e78..449e032 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ It is based on the Go `gofmt` command source code and the go `printer` package, We have modified the `printer` code in the `pyprint` package to instead print out Python code. -The `-gopy` flag generates [GoPy](https:://github.com/go-python/gopy) specific Python code, including: +The `-gopy` flag generates [GoPy](https://github.com/go-python/gopy) specific Python code, including: * `nil` -> `go.nil` * `[]string{...}` -> `go.Slice_string([...])` etc for int, float64, float32 -The `-gogi` flag generates [GoGi](https:://github.com/goki/gi) specific Python code, including: +The `-gogi` flag generates [GoGi](https://github.com/goki/gi) specific Python code, including: * struct tags generate: `self.SetTags()` call, for the `pygiv.ClassViewObj` class, which then provides an automatic GUI view with tag-based formatting of struct fields.